-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (43 loc) · 1.42 KB
/
build_rechunk.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
name: Publish rechunk to GHCR
on:
workflow_dispatch:
inputs:
tag:
description: 'The version to tag the package with:'
required: true
release:
types: [published]
permissions:
contents: read
jobs:
deploy_ghcr:
permissions:
# contents: write
packages: write
runs-on: ubuntu-24.04
environment: prod
steps:
- name: Login to GHCR
run: echo "${{ secrets.GITHUB_TOKEN }}" | sudo podman login ghcr.io -u ${{ github.actor }} --password-stdin
- uses: actions/checkout@v3
- name: Build Image
run: |
sudo podman build --tag 'fedora_build' .
- name: Upload Image
id: upload
shell: bash
run: |
if [[ -n "${{ github.event.inputs.tag }}" ]]; then
VERSION="${{ github.event.inputs.tag }}"
elif [[ -n "${{ github.event.release.tag_name }}" ]]; then
VERSION="${{ github.event.release.tag_name }}"
else
echo "No version tag provided"
exit 1
fi
sudo podman tag fedora_build ghcr.io/hhd-dev/rechunk:latest
sudo podman push ghcr.io/hhd-dev/rechunk:latest
sudo podman tag fedora_build ghcr.io/hhd-dev/rechunk:stable
sudo podman push ghcr.io/hhd-dev/rechunk:stable
sudo podman tag fedora_build ghcr.io/hhd-dev/rechunk:$VERSION
sudo podman push ghcr.io/hhd-dev/rechunk:$VERSION