Update .forgejo/workflows/build.yml
This commit is contained in:
parent
9a571acb26
commit
12de78ddfe
1 changed files with 19 additions and 18 deletions
|
@ -103,25 +103,25 @@ jobs:
|
||||||
# This does not make your image faster to download, just provides better resumability and fixes a few errors.
|
# This does not make your image faster to download, just provides better resumability and fixes a few errors.
|
||||||
# Documentation for Rechunk is provided on their github repository at https://github.com/hhd-dev/rechunk
|
# Documentation for Rechunk is provided on their github repository at https://github.com/hhd-dev/rechunk
|
||||||
# You can enable it by uncommenting the following lines:
|
# You can enable it by uncommenting the following lines:
|
||||||
# - name: Run Rechunker
|
- name: Run Rechunker
|
||||||
# id: rechunk
|
id: rechunk
|
||||||
# uses: hhd-dev/rechunk@f153348d8100c1f504dec435460a0d7baf11a9d2 # v1.1.1
|
uses: hhd-dev/rechunk@f153348d8100c1f504dec435460a0d7baf11a9d2 # v1.1.1
|
||||||
# with:
|
with:
|
||||||
# rechunk: 'ghcr.io/hhd-dev/rechunk:v1.0.1'
|
rechunk: 'ghcr.io/hhd-dev/rechunk:v1.0.1'
|
||||||
# ref: "localhost/${{ env.IMAGE_NAME }}:${{ env.DEFAULT_TAG }}"
|
ref: "localhost/${{ env.IMAGE_NAME }}:${{ env.DEFAULT_TAG }}"
|
||||||
# prev-ref: "${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.DEFAULT_TAG }}"
|
prev-ref: "${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.DEFAULT_TAG }}"
|
||||||
# skip_compression: true
|
skip_compression: true
|
||||||
# version: ${{ env.CENTOS_VERSION }}
|
version: ${{ env.CENTOS_VERSION }}
|
||||||
# labels: ${{ steps.metadata.outputs.labels }} # Rechunk strips out all the labels during build, this needs to be reapplied here with newline separator
|
labels: ${{ steps.metadata.outputs.labels }} # Rechunk strips out all the labels during build, this needs to be reapplied here with newline separator
|
||||||
|
|
||||||
# This is necessary so that the podman socket can find the rechunked image on its storage
|
This is necessary so that the podman socket can find the rechunked image on its storage
|
||||||
# - name: Load in podman and tag
|
- name: Load in podman and tag
|
||||||
# run: |
|
run: |
|
||||||
# IMAGE=$(podman pull ${{ steps.rechunk.outputs.ref }})
|
IMAGE=$(podman pull ${{ steps.rechunk.outputs.ref }})
|
||||||
# sudo rm -rf ${{ steps.rechunk.outputs.output }}
|
sudo rm -rf ${{ steps.rechunk.outputs.output }}
|
||||||
# for tag in ${{ steps.metadata.outputs.tags }}; do
|
for tag in ${{ steps.metadata.outputs.tags }}; do
|
||||||
# podman tag $IMAGE ${{ env.IMAGE_NAME }}:$tag
|
podman tag $IMAGE ${{ env.IMAGE_NAME }}:$tag
|
||||||
# done
|
done
|
||||||
|
|
||||||
# These `if` statements are so that pull requests for your custom images do not make it publish any packages under your name without you knowing
|
# These `if` statements are so that pull requests for your custom images do not make it publish any packages under your name without you knowing
|
||||||
# They also check if the runner is on the default branch so that things like the merge queue (if you enable it), are going to work
|
# They also check if the runner is on the default branch so that things like the merge queue (if you enable it), are going to work
|
||||||
|
@ -136,6 +136,7 @@ jobs:
|
||||||
- name: Log in to the Container registry
|
- name: Log in to the Container registry
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.GITHUB_TOKEN }}" | sudo podman login rievo.dev -u ${{ github.actor }} --password-stdin
|
echo "${{ secrets.GITHUB_TOKEN }}" | sudo podman login rievo.dev -u ${{ github.actor }} --password-stdin
|
||||||
|
podman push "${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:latest"
|
||||||
|
|
||||||
# Workaround bug where capital letters in your GitHub username make it impossible to push to GHCR.
|
# Workaround bug where capital letters in your GitHub username make it impossible to push to GHCR.
|
||||||
# https://github.com/macbre/push-to-ghcr/issues/12
|
# https://github.com/macbre/push-to-ghcr/issues/12
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue