-
Notifications
You must be signed in to change notification settings - Fork 4
72 lines (59 loc) · 2.11 KB
/
build_and_publish.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Build and publish
on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- v**
workflow_dispatch:
env:
APP_NAME: kogda-igra
jobs:
build:
name: Build and publish
runs-on: ubuntu-20.04
permissions:
packages: write
checks: write
actions: write
statuses: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the whole repo history
# TODO: Make GitHub Action from this script
- name: Git Version # Fills env.CALCULATED_VERSION and env.CALCULATED_VERSION_IS_RELEASE
id: version
run: iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/AntonSmolkov/HandyPoshScripts/v1.0.2/DevOps/SemVerCalc_GitHubFlow_Actions.ps1'))
shell: pwsh
env:
REF_NAME: ${{ github.ref_name }}
REF_TYPE: ${{ github.ref_type }}
- name: Restore docker images cache
uses: satackey/action-docker-layer-caching@v0.0.11
continue-on-error: true
#Rest of the pipeline implies write api privileges and can't be run on PRs
- name: Build kogda-igra image
if: github.event_name != 'pull_request'
run: docker build . --tag ${APP_NAME} --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to docker registry
if: github.event_name != 'pull_request'
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push portal image to docker registry
if: github.event_name != 'pull_request'
run: |
APP_IMAGE_ID=ghcr.io/${{ github.repository_owner }}/${APP_NAME}
# Change all uppercase to lowercase
APP_IMAGE_ID=$(echo ${APP_IMAGE_ID} | tr '[A-Z]' '[a-z]')
VERSION=$(echo ${{ env.CALCULATED_VERSION }} | tr '[A-Z]' '[a-z]')
docker tag ${APP_NAME} ${APP_IMAGE_ID}:${VERSION}
docker push ${APP_IMAGE_ID}:${VERSION}
if [[ "${{ env.CALCULATED_VERSION_IS_RELEASE }}" == "True" ]]
then
docker tag ${APP_NAME} ${APP_IMAGE_ID}:latest
docker push ${APP_IMAGE_ID}:latest
fi