There was an error while loading. Please reload this page.
1 parent c54c90e commit 93fcce8Copy full SHA for 93fcce8
1 file changed
.github/workflows/dev-release.yaml
@@ -0,0 +1,31 @@
1
+name: Build and push Docker image to a container registry
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'beta-*.*.*'
7
+ workflow_dispatch:
8
9
+jobs:
10
+ release:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ - name: Set image tag value
17
+ id: vars
18
+ run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
19
+ - uses: docker/setup-buildx-action@v3
20
+ - uses: docker/login-action@v3
21
22
+ registry: ghcr.io
23
+ username: ${{ github.repository_owner }}
24
+ password: ${{ secrets.RE_GITHUB_TOKEN }}
25
+ - uses: docker/bake-action@v6
26
+ env:
27
+ TAG: ${{ steps.vars.outputs.tag }}
28
29
+ push: true
30
+ files: "build/dev/docker-bake.json"
31
0 commit comments