File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1
- name : ci
1
+ name : Build docker image
2
2
3
3
on :
4
4
push :
@@ -19,10 +19,14 @@ jobs:
19
19
username : ${{ github.repository_owner }}
20
20
password : ${{ secrets.GITHUB_TOKEN }}
21
21
22
+ - name : Get version
23
+ id : get_version
24
+ uses : battila7/get-version-action@v2
25
+
22
26
- name : Build and push
23
27
id : docker_build
24
28
uses : docker/build-push-action@v2
25
29
with :
26
30
push : true
27
31
platforms : linux/amd64,linux/arm64
28
- tags : ghcr.io/tendermint/faucet:latest,ghcr.io/tendermint/faucet:${GITHUB_REF#refs/*/ }
32
+ tags : ghcr.io/tendermint/faucet:latest,ghcr.io/tendermint/faucet:${{ steps.get_version.outputs.version-without-v } }
Original file line number Diff line number Diff line change
1
+ name : " Semantic PR"
2
+ on :
3
+ pull_request_target :
4
+ types :
5
+ - opened
6
+ - edited
7
+ - synchronize
8
+ jobs :
9
+ main :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : amannn/action-semantic-pull-request@v1.2.0
13
+ env :
14
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments