fix: Remove checkout for semantic release

This commit is contained in:
2026-01-29 14:43:47 +01:00
parent b493328b85
commit 5e54e04eef
2 changed files with 8 additions and 6 deletions
+8 -3
View File
@@ -68,11 +68,16 @@ runs:
nix-build -A containers."${{ inputs.project }}" \
--argstr env "${{ steps.envvars.outputs.ENV }}"
ls -alh ./result
skopeo inspect docker-archive://$(readlink -f ./result)
# The Nix build creates a compressed tar.gz file, we need to extract it first
cd /tmp/skopeo
cp ${GITHUB_WORKSPACE}/result ./docker-image.tar.gz
gunzip docker-image.tar.gz
# ls -alh ./result
# skopeo inspect docker-archive://$(readlink -f ./result)
echo "Pushing image: ${{ steps.envvars.outputs.IMAGE_NAME }}"
skopeo copy \
--tmpdir /tmp/skopeo \
docker-archive://$(readlink -f ./result) \
docker-archive:/tmp/skopeo/docker-image.tar \
docker://${{ steps.envvars.outputs.IMAGE_NAME }}
-3
View File
@@ -29,9 +29,6 @@ outputs:
runs:
using: composite
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Create package.json
shell: bash
run: |