aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.io>2023-05-01 16:39:36 -0400
committerGitHub <noreply@github.com>2023-05-01 16:39:36 -0400
commite8887de090d7205a5d7d37175ce29d782a7d71f0 (patch)
tree39dddcaa2fcd81a96e986ee340128b71aedc74a9 /.github/workflows
parent2b241ac9148b17da3a5784408b8306d39848e765 (diff)
downloadgitea-e8887de090d7205a5d7d37175ce29d782a7d71f0.tar.gz
gitea-e8887de090d7205a5d7d37175ce29d782a7d71f0.zip
replace PR docker dry run in drone with Actions (#24475)
As before with past PRs to switch Drone pipelines to use (GitHub) Actions. --------- Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pull-docker_dryrun.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/pull-docker_dryrun.yml b/.github/workflows/pull-docker_dryrun.yml
new file mode 100644
index 0000000000..719668db81
--- /dev/null
+++ b/.github/workflows/pull-docker_dryrun.yml
@@ -0,0 +1,19 @@
+name: Docker build dry run
+
+on: [pull_request]
+
+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