-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (36 loc) · 1.08 KB
/
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: Publish (main)
on:
push:
branches: [ main, develop ]
jobs:
image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to ghcr.io
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Buildah Action
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: ghcr.io/jritter/scapinoculars
tags: latest ${{ github.sha }}
containerfiles: |
./Containerfile
build-args: |
VERSION=main
HASH=${{ github.sha }}
- name: Push To ghcr
id: push-to-ghcr
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: ghcr.io
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-ghcr.outputs.registry-paths }}"