6.1.1 - Dependency Updates (#553) #20
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: Create Release | |
| # See docu/Continuous Integration And_General_Tests.md for detailed information-module. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| create_release_tag: | |
| name: Create Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: actions/[email protected] | |
| with: | |
| node-version: '16' | |
| - name: Load Version of Latest Release | |
| id: check # This will be the reference for getting the outputs. | |
| uses: EndBug/version-check@v2 | |
| with: | |
| file-name: ./frontend/package.json | |
| file-url: ::before | |
| static-checking: localIsNew | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
| with: | |
| tag_name: v${{ steps.check.outputs.version }} | |
| release_name: Version ${{ steps.check.outputs.version }} | |
| body: ${{ github.event.head_commit.message }} | |
| draft: false | |
| prerelease: false |