forked from entrepreneur-interet-general/opensignauxfaibles
-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (53 loc) · 1.64 KB
/
container.yml
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
62
63
64
name: Build & Push Container vers ghcr.io
on:
push:
jobs:
container_datapi:
name: Push OpenSignauxFaibles container
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version-file: ./js/.nvmrc
- name: Prepare js sources
run: npm install --prefer-offline --no-audit
working-directory: js
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
id: go
- name: Prepare container sources & resources
shell: bash
run: |
go generate -x ./...
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o sfdata
cp ./sfdata ./build-container
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
flavor: |
latest=true
- name: Login to GitHub Container Registry
id: login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./build-container
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}