Add local datastore and IPC trust planes #35
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: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set version from tag | |
| run: | | |
| echo "${GITHUB_REF_NAME#v}" > VERSION | |
| - name: Build release assets | |
| run: bash scripts/package-release.sh "$GITHUB_REPOSITORY" "${GITHUB_REF_NAME#v}" | |
| - name: Publish GitHub release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| dist/runwall-*.tar.gz | |
| dist/runwall-*.zip | |
| dist/SHA256SUMS | |
| dist/runwall.rb | |
| dist/runwall.json |