bingo/.gitea/workflows/build.yaml

35 lines
969 B
YAML
Raw Normal View History

name: build
run-name: ${{ gitea.actor }} is building.
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: login to container registry
uses: docker/login-action@v3
with:
2024-09-20 13:39:41 -04:00
registry: gitea:3000
username: ${{ gitea.actor }}
password: ${{ secrets.GITEA_TOKEN }}
- name: docker buildx setup
uses: docker/setup-buildx-action@v3
2024-09-20 13:39:41 -04:00
with:
config-inline: |
[registry."gitea:3000"]
http = true
insecure = true
- name: checkout code
uses: actions/checkout@v4
- name: build and push to registry
uses: docker/build-push-action@v6
with:
2024-09-20 13:39:41 -04:00
context: .
file: ./Dockerfile
platforms: |
linux/amd64
linux/arm64
push: true
2024-09-20 13:39:41 -04:00
tags: |
gitea:3000/${{ gitea.repository_owner }}/${{ gitea.repository }}:dev