Skip to content

Commit

Permalink
ci: fix docker IMG hash
Browse files Browse the repository at this point in the history
  • Loading branch information
js2264 committed Jan 22, 2024
1 parent 1aad2ca commit 7e63edd
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/biocbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,30 +57,30 @@ jobs:
${{ env.pkgversion }}
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'devel') }}
- name: πŸ“¦ Install, build and check package in local Docker image
id: docker
uses: docker/build-push-action@v5
with:
context: .
load: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
BIOC_VERSION=${{ github.ref_name }}
# - name: πŸ“¦ Install, build and check package in local Docker image
# id: docker
# uses: docker/build-push-action@v5
# with:
# context: .
# load: true
# tags: ${{ steps.meta.outputs.tags }}
# build-args: |
# BIOC_VERSION=${{ github.ref_name }}

- name: πŸš€ Push local Docker image to ghcr.io
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
BIOC_VERSION=${{ github.ref_name }}
# - name: πŸš€ Push local Docker image to ghcr.io
# uses: docker/build-push-action@v5
# with:
# context: .
# push: true
# tags: ${{ steps.meta.outputs.tags }}
# build-args: |
# BIOC_VERSION=${{ github.ref_name }}

- name: πŸ“š Recover pkg artifacts generated during build in local Docker container (pkg bundle and book)
env:
IMG: ${{ steps.docker.outputs.ImageID }}
run: |
SHA=$(docker container create ${{ env.IMG }})
SHA=$(docker container create docker pull ghcr.io/js2264/ohca:latest)
docker container cp ${SHA}:/${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz .
tar --extract --gzip --file ${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz
echo bundle_path=${{ env.Pkgname }}_${{ env.pkgversion }}.tar.gz >> "${GITHUB_ENV}"
Expand Down

0 comments on commit 7e63edd

Please sign in to comment.