-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 1.03 KB
/
BuildImageCacheRefresh.yml
File metadata and controls
42 lines (35 loc) · 1.03 KB
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
name: BuildImageCacheRefresh
on:
push:
tags:
- "*"
jobs:
build-push-image:
runs-on: ubuntu-latest
steps:
- name: Check out current project
uses: actions/checkout@v4
with:
path: ./Gnoss.BackgroundTask.CacheRefresh.OpenCORE
- name: check out commons
uses: actions/checkout@v4
with:
repository: equipognoss/Gnoss.Commons.OpenCORE
path: ./Gnoss.Commons
ref: main
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Get the tag name
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./Gnoss.BackgroundTask.CacheRefresh.OpenCORE/Dockerfile
push: true
tags: |
${{ secrets.DOCKER_IMAGE_NAME }}:${{ steps.get_version.outputs.VERSION }}