-
-
Notifications
You must be signed in to change notification settings - Fork 6
60 lines (52 loc) · 1.83 KB
/
container-archive.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
---
name: Build and Publish Archive Container Image
"on":
# run it on push to the default repository branch
push:
branches:
- main
pull_request:
schedule:
- cron: '0 6 * * *' # Daily 6AM UTC build
jobs:
# define job to build and publish container image
build-and-push-archive-container-image:
name: Build container image and push to repositories
# run only when code is compiling and tests are passing
runs-on: ubuntu-latest
# steps to perform in job
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Determine tags to set (pull_request)
run: |
echo "TAGS=${{ github.sha }}" >> $GITHUB_ENV
if: ${{ github.event_name == 'pull_request' }}
- name: Determine tags to set (push)
run: |
echo "TAGS=${{ github.sha }} ${{ github.ref_name }}" >> $GITHUB_ENV
if: ${{ github.event_name == 'push' }}
- name: Login to Github Packages
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build archive image
id: build-image-archive
uses: redhat-actions/buildah-build@v2
with:
containerfiles: "Dockerfile_archive"
image: ghcr.io/jelmer/janitor/archive
tags: ${{ env.TAGS }}
- name: Push archive image to ghcr.io
if: ${{ github.event_name != 'pull_request' }}
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image-archive.outputs.image }}
tags: ${{ steps.build-image-archive.outputs.tags }}
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}