mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 17:24:26 +00:00
18 lines
377 B
YAML
18 lines
377 B
YAML
|
name: docker-dryrun
|
||
|
|
||
|
on: [pull_request]
|
||
|
|
||
|
concurrency:
|
||
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
docker-dryrun:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: docker/setup-buildx-action@v2
|
||
|
- uses: docker/build-push-action@v4
|
||
|
with:
|
||
|
push: false
|
||
|
tags: gitea/gitea:linux-amd64
|