-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 820 Bytes
/
cd.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
name: Docker
on:
push:
tags-ignore:
- "v*"
jobs:
docker:
name: Deploy Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
id: build
uses: redhat-actions/buildah-build@v2
with:
image: Fyko/stockx-gif
tags: latest ${{ github.sha }} # important!
dockerfiles: |
./Dockerfile
build-args: |
CREATED_AT=${{ env.datetime }}
GITHUB_SHA=${{ github.sha }}
- name: Publish
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build.outputs.image }}
tags: ${{ steps.build.outputs.tags }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}