Workflow file for this run
This file contains 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: Automated Releases | |
on: | |
push: | |
tags: | |
- v*.*.* | |
permissions: | |
contents: write | |
jobs: | |
build-in-container: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install jq | |
run: sudo apt-get install -y jq | |
- name: Generate Paths | |
id: generate_paths | |
run: echo "output_paths=${GITHUB_WORKSPACE}/.github/scripts/generate_output_paths.sh" >> $GITHUB_OUTPUT | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
${{ steps.generate_paths.outputs.output_paths }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ github.ref_name }} | |
generate_release_notes: true |