-
Notifications
You must be signed in to change notification settings - Fork 5
36 lines (33 loc) · 1.15 KB
/
build-bundle-image.yaml
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: Deploy Bundle Images to GHCR
env:
DOTNET_VERSION: '6.0.x'
on:
push:
branches:
- main
workflow_dispatch:
jobs:
push-bundle-image:
runs-on: ubuntu-latest
defaults:
run:
working-directory: '.'
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 'Build Bundle Image'
run: |
VERSION=$(git describe --tags --abbrev=0 || echo "0.1.0")
echo "Version is: $VERSION" # Debugging: Print the version
export IMAGE_TAG_BASE="ghcr.io/${{ github.repository }}:$VERSION"
export BUNDLE_IMG="ghcr.io/${{ github.repository }}:$VERSION-bundle:v$VERSION"
export BUNDLE_GEN_FLAGS="-q --overwrite --version $VERSION --extra-service-accounts \"linuxptp-daemon\""
make bundle
make bundle-build
make bundle-push