Traefik 3
Some checks are pending
Build traefik image / Builder (push) Waiting to run

This commit is contained in:
2024-08-23 09:13:23 +03:00
commit 11ccbec134
5 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
name: Build traefik image
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Builder:
runs-on:
group: fedora-40
labels: registry.r10x/toolchain
secrets:
access-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
env:
IMAGE_NAME: registry.r10x/traefik
steps:
# - uses: actions/checkout@v4
- run: env
- run: cat $GITHUB_ENV
- run: pwd
- run: ls -la
- run: git config --global url."https://${ACTIONS_RUNTIME_TOKEN}:x-oauth-basic@codex.r10x.net/".insteadOf "${GITHUB_SERVER_URL}"
- run: git clone ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} ${PWD}
- run: pwd
- run: ls -la
- run: docker build --progress=plain --tag ${IMAGE_NAME} .
- run: docker push ${IMAGE_NAME}