We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98caa1 commit c8e0e1fCopy full SHA for c8e0e1f
.github/workflows/release-dev.yaml
@@ -0,0 +1,34 @@
1
+name: Release Dev
2
+
3
+on:
4
+ pull_request:
5
+ branches-ignore:
6
+ - master
7
+ push:
8
+ branches:
9
+ - xelon/master
10
11
+permissions:
12
+ contents: write
13
14
+jobs:
15
+ release:
16
+ name: release
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v4
21
+ with:
22
+ fetch-depth: 0
23
24
+ - name: Login to Docker Hub
25
+ uses: docker/login-action@v3
26
27
+ username: ${{ secrets.DOCKER_HUB_USERNAME }}
28
+ password: ${{ secrets.DOCKER_HUB_TOKEN }}
29
30
+ - name: Release development Docker image
31
+ env:
32
+ REGISTRY: xelonag
33
+ BUILD_TAGS: xelon
34
+ run: make dev-release
0 commit comments