Update build-bundle-image.yaml #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=1.0 | |
echo "Version is: $VERSION" # Debugging: Print the version | |
export IMG=ghcr.io/${{ github.repository }}:latest | |
export IMAGE_TAG_BASE="ghcr.io/${{ github.repository }}:$VERSION" | |
export BUNDLE_IMG="ghcr.io/${{ github.repository }}:latest-bundle:v$VERSION" | |
make bundle | |
make bundle-build | |
make bundle-push | |