add curl as it is missing from java 25 base image (#164) #421
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
| --- | |
| # Workflow to automate creation and updating of release branches | |
| name: Release Branching | |
| # Trigger on tags created by TeamCity | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| branch_release: | |
| if: github.event.created && github.event.sender.login == 'labkey-teamcity' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Create branches and PRs | |
| uses: LabKey/gitHubActions/branch-release@develop | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |