dependencies: Update dependencies to latest version #815
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
env: | |
IMAGE_NAME: pipxe | |
jobs: | |
build: | |
needs: setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download | |
uses: actions/download-artifact@v3 | |
with: | |
name: container | |
- name: Load | |
run: docker load -i container.tar | |
- name: Build | |
run: | | |
id=${{ matrix.target }} | |
cidfile=${id}.cid | |
docker run -t -e RASPI_VERSION=${id} --cidfile ${cidfile} ${IMAGE_NAME} | |
cid=$(cat ${cidfile}) | |
docker cp ${cid}:/opt/build/sdcard.img ./${id}.img | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: images | |
path: '*.img' | |
strategy: | |
matrix: | |
target: | |
- RPi3 | |
- RPi4 | |
push: | |
if: github.event_name == 'push' | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download | |
uses: actions/download-artifact@v3 | |
with: | |
name: images | |
- name: Authenticate | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Publish | |
run: | | |
IMAGE_ID=ghcr.io/${{ github.repository }}/$IMAGE_NAME | |
# Change all uppercase to lowercase | |
IMAGE_ID=$(echo ${IMAGE_ID} | tr '[A-Z]' '[a-z]') | |
# Strip git ref prefix from version | |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | |
if [[ "${{ github.ref }}" != *"refs/tags/"* ]]; then | |
[ "${VERSION}" == "main" ] && VERSION=latest | |
fi | |
echo IMAGE_ID=${IMAGE_ID} | |
echo VERSION=${VERSION} | |
USER=$(echo "${GITHUB_REPOSITORY}" | cut -d ";" -f 1 | tr '[A-Z]' '[a-z]') | |
REPOSITORY=$(echo "${GITHUB_REPOSITORY}" | cut -d ";" -f 2 | tr '[A-Z]' '[a-z]') | |
echo USER=${USER} | |
echo REPOSITORY=${REPOSITORY} | |
docker run -t --rm -v ${HOME}/.docker:/.docker -v $(pwd):/workspace ghcr.io/oras-project/oras:v0.12.0 push \ | |
${IMAGE_ID}:${{ github.sha }} \ | |
--config /.docker/config.json \ | |
--manifest-config /dev/null:application/vnd.${USER}.${REPOSITORY}.config \ | |
./:application/vnd.${USER}.${REPOSITORY}.layer.v1+tar | |
docker run -t --rm -v ${HOME}/.docker:/.docker -v $(pwd):/workspace ghcr.io/oras-project/oras:v0.12.0 push \ | |
${IMAGE_ID}:${VERSION} \ | |
--config /.docker/config.json \ | |
--manifest-config /dev/null:application/vnd.${USER}.${REPOSITORY}.config \ | |
./:application/vnd.${USER}.${REPOSITORY}.layer.v1+tar | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup build environment | |
run: docker build . --file Containerfile --tag ${IMAGE_NAME} | |
- name: Save | |
run: docker save ${IMAGE_NAME} -o container.tar | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: container | |
path: container.tar | |
name: Build | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' |