Update version to 1.5.0 in documentation and codebase, reflecting new… #242
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 (draft) | |
| uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2 | |
| with: | |
| draft: true | |
| files: | | |
| ./**/aikido-php-firewall* |