Skip to content

Commit

Permalink
Hardcode version for now
Browse files Browse the repository at this point in the history
  • Loading branch information
julianschuler committed Jun 17, 2024
1 parent 90b6524 commit 045f201
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
fail_on_unmatched_files: true
devimage:
name: Build and release development image
env:
version: 7.5.0
needs: cicd
runs-on:
- self-hosted
Expand All @@ -50,21 +52,18 @@ jobs:
with:
fetch-depth: 0
path: meta-nao
- name: Get latest tag
uses: actions-ecosystem/action-get-latest-tag@v1
id: latest-tag
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Build development image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: naosdk
tags: latest ${{ github.sha }} ${{ steps.latest-tag.outputs.tag }}
tags: latest ${{ github.sha }} ${{ env.version }}
archs: x86_64
containerfiles: ./Containerfile
build-args: |
version=${{ steps.latest-tag.outputs.tag }}
version=${{ env.version }}
arch=x86_64
- name: Push development image to ghcr.io
uses: redhat-actions/push-to-registry@v2
Expand Down

0 comments on commit 045f201

Please sign in to comment.