forked from migalabs/goteth
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (46 loc) · 1.62 KB
/
build-and-release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Build & Release GC goteth scraper
on:
pull_request:
types: [ closed ]
concurrency:
group: gc-goteth-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
if: github.event.pull_request.merged == true
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Get Organization Name
id: org_name
run: |
org_name=$(echo "${{ github.repository_owner }}")
echo "Organization Name: $org_name"
echo "org_name=$org_name" >> $GITHUB_OUTPUT
- name: Extract commit
id: commit
uses: prompt/actions-commit-hash@v3
- name: Git Submodule Update
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ steps.org_name.outputs.org_name }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Latest
run: |
docker build . --tag ghcr.io/${{ steps.org_name.outputs.org_name }}/goteth:latest
docker push ghcr.io/${{ steps.org_name.outputs.org_name }}/goteth:latest
- name: Push Versioned
run: |
docker build . --tag ghcr.io/${{ steps.org_name.outputs.org_name }}/goteth:${{ steps.commit.outputs.short }}
docker push ghcr.io/${{ steps.org_name.outputs.org_name }}/goteth:${{ steps.commit.outputs.short }}