forked from concourse/oci-build-task
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 849 Bytes
/
main.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
name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: {submodules: true}
- run: scripts/test
build-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: {submodules: true}
- run: scripts/build
- run: scripts/build-image
- uses: actions/upload-artifact@v4
with:
name: image
path: image
push-image:
needs: [build-image]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: image
path: image
- uses: docker://concourse/registry-image-resource
with: {entrypoint: scripts/push-image}
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}