Skip to content

Commit c8e0e1f

Browse files
committed
chore: add release dev workflow
1 parent b98caa1 commit c8e0e1f

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/release-dev.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)