docker: bump golang from c05ba4b to 523c3ef (#602)
#799
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: | |
| branches: | |
| - master | |
| - "*" | |
| tags: | |
| # Additional packages must be added both here AND in the job list below: | |
| - "v*" | |
| - "riverproui/v*" | |
| jobs: | |
| release_riverui: | |
| uses: ./.github/workflows/package-and-release.yaml | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| with: | |
| after-version: v0.4.0 | |
| module-base: riverqueue.com/riverui | |
| module-dir: . | |
| storage-bucket: ${{ vars.RELEASE_STORAGE_BUCKET }} | |
| version-tag: ${{ github.ref_name}} | |
| permissions: | |
| contents: read | |
| secrets: | |
| r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }} | |
| r2-endpoint-url: ${{ secrets.R2_ENDPOINT_URL }} | |
| r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }} | |
| release_riverproui: | |
| uses: ./.github/workflows/package-and-release.yaml | |
| if: startsWith(github.ref, 'refs/tags/riverproui/v') | |
| with: | |
| after-version: v0.12.1 | |
| module-base: riverqueue.com/riverui | |
| module-dir: ./riverproui | |
| storage-bucket: ${{ vars.RELEASE_STORAGE_BUCKET }} | |
| version-tag: ${{ github.ref_name}} | |
| permissions: | |
| contents: read | |
| secrets: | |
| r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }} | |
| r2-endpoint-url: ${{ secrets.R2_ENDPOINT_URL }} | |
| r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }} |