2023-05-04 07:34:02 +05:30
|
|
|
name: "Pull: Docker Dry Run"
|
2023-05-02 02:09:36 +05:30
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
2023-05-05 03:51:48 +05:30
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-05-02 02:09:36 +05:30
|
|
|
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
|