Files
catalog26/.gitea/workflows/demo.yaml
Wesley Cho b7df8c0cc3
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 45s
actions_token
2026-02-01 00:30:15 -08:00

26 lines
935 B
YAML

name: Gitea Actions Demo
run-name: ${{ github.actor }} is building and pushing 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Login to Gitea Registry
# We use single quotes around the secret to prevent shell interpretation
# and the VM IP to bypass the 'server' DNS issue.
run: |
echo '${{ secrets.ACTIONS_TOKEN }}' | docker login https://git.chopark.home --username ${{ github.actor }} --password-stdin
- name: Build and Push Docker Image
run: |
docker build -t git.chopark.home:3000/${{ github.repository }}:latest .
docker push git.chopark.home:3000/${{ github.repository }}:latest
- name: List files in the repository
run: ls ${{ github.workspace }}
- run: echo "🍏 Build and Push status is ${{ job.status }}."