mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-25 02:22:36 +01:00
ci(docker): fix app version
This commit is contained in:
parent
7d93f1566c
commit
c802b49b7a
6
.github/workflows/docker.yaml
vendored
6
.github/workflows/docker.yaml
vendored
@ -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'"
|
||||
|
Loading…
Reference in New Issue
Block a user