Files
gitea-workspaces/.gitea/workflows/release-tag.yml
KoCoder d75005941d
Some checks failed
build-docker-imge / Build the docker container (push) Failing after 40s
Include debug output in the pipeline
2024-07-03 22:21:54 +02:00

23 lines
739 B
YAML

name: build-docker-imge
on:
- push
- pull_request
jobs:
build:
name: Build the docker container
runs-on: ubuntu-latest
steps:
- name: Print env vars
run: echo ${{ var.GITEA_SHA }}
- name: Print env vars2
run: echo ${{ github.repository }}
- name: Print env vars3
run: echo ${{ gitea.repository }}
- uses: actions/checkout@v4
name: ⬇️ Checking out the repository
- uses: docker/setup-buildx-action@v3
name: Setup docker buildx
- run: docker build . -t git.kocoder.xyz/kocoded/gitea-workspaces:${{ var.GITEA_SHA }}
name: Build the docker container
- run: docker push git.kocoder.xyz/kocoded/gitea-workspaces:${{ var.GITEA_SHA }}