Files
runner-custom/.gitea/workflows/gitea-ci.yaml
Jérémie SALVI 6d5abaa8a4
Some checks failed
Build and push runner-custom image / publish (push) Failing after 21s
Action: build custom image
2024-12-21 19:27:57 +01:00

20 lines
570 B
YAML

name: Build and push runner-custom image
run-name: ${{ gitea.actor }} is runs ci pipeline
on: [ push ]
jobs:
publish:
runs-on: runner-custom
if: gitea.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "${{ secrets.ACCESS_TOKEN }}"
- run: pwd
- run: |
cd ${{ gitea.workspace }}
- run: |
pwd
- run: |
docker login --username beastie --password "${{ secrets.ACCESS_TOKEN }}"