Skip to content

fix(deps): update module code.gitea.io/sdk/gitea to v0.22.1 #2785

fix(deps): update module code.gitea.io/sdk/gitea to v0.22.1

fix(deps): update module code.gitea.io/sdk/gitea to v0.22.1 #2785

Workflow file for this run

name: "Docker Build"
on: [push, pull_request]
permissions:
contents: read
jobs:
docker-build:
name: Docker Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Docker Build
env:
KEY: ${{ secrets.API_KEY }}
shell: bash
run: |
set -e
export APIFILE="internal/controller/apikey.txt"
trap "rm -f ${APIFILE}" SIGINT EXIT
if [ -z "${KEY}" ]; then
echo "Key is empty"
echo '' > "${APIFILE}"
else
echo "Key is set"
echo "${KEY}" > "${APIFILE}"
fi
make USE_IMAGE_DIGESTS=true docker-build