ci(docker): fix app version

This commit is contained in:
Matthew Penner 2022-12-04 18:36:26 -07:00
parent 7d93f1566c
commit c802b49b7a
No known key found for this signature in database

View file

@ -25,6 +25,7 @@ jobs:
with:
images: ghcr.io/pterodactyl/panel
tags: |
latest=false
type=raw,value=latest,enable=${{ github.event_name == 'release' && github.event.action == 'published' && github.event.release.prerelease == false }}
type=ref,event=tag
type=ref,event=branch
@ -42,6 +43,11 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Update app.php version
if: "github.event_name == 'release' && github.event.action == 'published'"
run: |
sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:11}',/" config/app.php
- name: Build and Push (tag)
uses: docker/build-push-action@v3
if: "github.event_name == 'release' && github.event.action == 'published'"