From 833cc2b5f308f5ba34c8fc60c3aa0faf61ba7b51 Mon Sep 17 00:00:00 2001 From: Miguel Pena Date: Mon, 16 Feb 2026 11:18:02 -0800 Subject: [PATCH 1/3] cicd updates --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 719e610..8546b54 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -418,7 +418,7 @@ jobs: push: true tags: ${{ needs.setup.outputs.image_sfincs }}:${{ needs.setup.outputs.test_image_tag }} build-args: | - SFINCS_CPU_IMAGE_TAG=${{ github.event.inputs.SFINCS_CPU_IMAGE_TAG || 'latest' }} + SFINCS_CPU_IMAGE_TAG=${{ inputs.SFINCS_CPU_IMAGE_TAG || 'latest' }} IMAGE_SOURCE=https://github.com/${{ github.repository }} IMAGE_VENDOR=${{ github.repository_owner }} IMAGE_VERSION=${{ needs.setup.outputs.clean_ref }} From 4eefef862078edf8915f22faa94211c51f7e4d4e Mon Sep 17 00:00:00 2001 From: Miguel Pena Date: Tue, 17 Feb 2026 19:30:14 -0800 Subject: [PATCH 2/3] cicd updates --- .github/workflows/cicd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 8546b54..72b07f6 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -261,7 +261,7 @@ jobs: "docker://${IMAGE_BASE}:${TEST_TAG}" "docker://${IMAGE_BASE}:${ALIAS_TAG}" # tag with 'latest' if on development branch push - if [ "$GITHUB_EVENT_NAME" = "push" ] && [ "$GITHUB_REF_NAME" = "development" ]; then + if [ "$GITHUB_REF_NAME" = "development" ]; then skopeo copy \ --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ --dest-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ @@ -375,7 +375,7 @@ jobs: "docker://${IMAGE_BASE}:${TEST_TAG}" "docker://${IMAGE_BASE}:${ALIAS_TAG}" # tag with 'latest' if on development branch push - if [ "$GITHUB_EVENT_NAME" = "push" ] && [ "$GITHUB_REF_NAME" = "development" ]; then + if [ "$GITHUB_REF_NAME" = "development" ]; then skopeo copy \ --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ --dest-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ @@ -489,7 +489,7 @@ jobs: "docker://${IMAGE_BASE}:${TEST_TAG}" "docker://${IMAGE_BASE}:${ALIAS_TAG}" # tag with 'latest' if on development branch push - if [ "$GITHUB_EVENT_NAME" = "push" ] && [ "$GITHUB_REF_NAME" = "development" ]; then + if [ "$GITHUB_REF_NAME" = "development" ]; then skopeo copy \ --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ --dest-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ From aac7f92164f7a28c2cf5f8130abdff531582a245 Mon Sep 17 00:00:00 2001 From: Miguel Pena Date: Tue, 17 Feb 2026 19:33:32 -0800 Subject: [PATCH 3/3] cicd updates --- .github/workflows/cicd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 72b07f6..9622760 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -260,7 +260,7 @@ jobs: --all \ "docker://${IMAGE_BASE}:${TEST_TAG}" "docker://${IMAGE_BASE}:${ALIAS_TAG}" - # tag with 'latest' if on development branch push + # tag with 'latest' if on development branch if [ "$GITHUB_REF_NAME" = "development" ]; then skopeo copy \ --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ @@ -374,7 +374,7 @@ jobs: --all \ "docker://${IMAGE_BASE}:${TEST_TAG}" "docker://${IMAGE_BASE}:${ALIAS_TAG}" - # tag with 'latest' if on development branch push + # tag with 'latest' if on development branch if [ "$GITHUB_REF_NAME" = "development" ]; then skopeo copy \ --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \ @@ -488,7 +488,7 @@ jobs: --all \ "docker://${IMAGE_BASE}:${TEST_TAG}" "docker://${IMAGE_BASE}:${ALIAS_TAG}" - # tag with 'latest' if on development branch push + # tag with 'latest' if on development branch if [ "$GITHUB_REF_NAME" = "development" ]; then skopeo copy \ --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \