( .. •˘___˘• .. )

This commit is contained in:
Matthew Penner 2020-12-15 16:08:06 -07:00
parent 02034211c1
commit 463dd6f4ec

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- 'develop' - 'develop'
tags: tags:
- 'v*' - 'v*'
@ -19,6 +20,12 @@ jobs:
- name: Code Checkout - name: Code Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Docker Meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
images: ghcr.io/pterodactyl/wings
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
@ -49,7 +56,7 @@ jobs:
if: "contains(github.ref, 'develop')" if: "contains(github.ref, 'develop')"
with: with:
build-args: | build-args: |
VERSION=dev-$(git rev-parse --short "$GITHUB_SHA"} VERSION=dev-$(git rev-parse --short $GITHUB_SHA)
labels: ${{ steps.docker_meta.outputs.labels }} labels: ${{ steps.docker_meta.outputs.labels }}
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }} tags: ${{ steps.docker_meta.outputs.tags }}