activate control_test_update_aikido (#322) #228
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build.yml | |
| release: | |
| runs-on: ubuntu-24.04 | |
| needs: build | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Set Aikido version | |
| run: | | |
| echo "AIKIDO_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| pattern: | | |
| aikido-php-firewall* | |
| - name: List Artifacts | |
| run: | | |
| ls -l | |
| pwd | |
| - name: Deploy to GitHub Release | |
| uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2 | |
| with: | |
| files: | | |
| ./**/aikido-php-firewall* | |
| - name: Deploy to GitHub Release Latest | |
| uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2 | |
| with: | |
| name: latest | |
| make_latest: true | |
| overwrite_files: true | |
| files: | | |
| ./**/aikido-php-firewall* |