mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-02 08:57:32 -04:00
f7f0782132
following https://github.com/go-gitea/gitea/pull/24314 and https://github.com/go-gitea/gitea/pull/24434, this PR moves drone cron pipelines to (GitHub) Actions. As these are mostly compatible with Gitea Actions, when we start to dogfood, these will already be migrated. --------- Co-authored-by: silverwind <me@silverwind.io>
20 lines
457 B
YAML
20 lines
457 B
YAML
name: "Pull: Docker 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
|