File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ release :
5
+ types : [released]
6
+
7
+ jobs :
8
+ release_image :
9
+ runs-on : ubuntu-latest
10
+ permissions :
11
+ packages : write
12
+ contents : read
13
+ steps :
14
+ - name : Checkout
15
+ uses : actions/checkout@v4
16
+ - name : Set up Docker
17
+ uses : docker/setup-qemu-action@v3
18
+ - name : Set up Docker Buildx
19
+ uses : docker/setup-buildx-action@v3
20
+ - name : Login to GitHub Container Registry
21
+ uses : docker/login-action@v2
22
+ with :
23
+ registry : ghcr.io
24
+ username : ${{ github.actor }}
25
+ password : ${{ secrets.GITHUB_TOKEN }}
26
+ - name : Build and push
27
+ uses : docker/build-push-action@v2
28
+ with :
29
+ context : .
30
+ file : ./Dockerfile
31
+ platforms : linux/amd64,linux/arm/v7
32
+ push : true
33
+ tags : ghcr.io/taskiq-python/taskiq-admin:latest,ghcr.io/taskiq-python/taskiq-admin:${{ github.ref_name }}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments