2023-05-03 20:04:02 -06:00
|
|
|
name: "Pull: Docker Dry Run"
|
2023-05-01 14:39:36 -06:00
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
2023-05-04 16:21:48 -06:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-05-01 14:39:36 -06:00
|
|
|
jobs:
|
|
|
|
docker_dryrun:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
push: false
|
|
|
|
tags: gitea/gitea:linux-amd64
|
|
|
|
build-args: |
|
|
|
|
GOPROXY=https://goproxy.io
|