2023-02-23 20:40:04 +00:00
|
|
|
name: Container
|
2022-10-14 16:59:20 +00:00
|
|
|
|
2020-11-15 03:56:43 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-12-05 00:40:17 +00:00
|
|
|
- develop
|
2022-12-05 16:58:13 +00:00
|
|
|
- 1.0-develop
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
- 1.0-develop
|
2022-12-05 00:40:17 +00:00
|
|
|
release:
|
|
|
|
types:
|
|
|
|
- published
|
2022-10-14 16:59:20 +00:00
|
|
|
|
2020-11-15 03:56:43 +00:00
|
|
|
jobs:
|
2023-02-23 20:40:04 +00:00
|
|
|
build-and-push:
|
|
|
|
name: Build and Push
|
2023-02-23 20:43:40 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2020-11-15 03:56:43 +00:00
|
|
|
steps:
|
2022-11-28 16:56:03 +00:00
|
|
|
- name: Code checkout
|
2022-10-14 16:59:20 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-02-23 20:40:04 +00:00
|
|
|
- name: Fetch metadata
|
|
|
|
id: metadata
|
2022-12-05 00:40:17 +00:00
|
|
|
uses: docker/metadata-action@v4
|
2020-11-15 04:46:37 +00:00
|
|
|
with:
|
|
|
|
images: ghcr.io/pterodactyl/panel
|
2022-12-05 01:37:45 +00:00
|
|
|
flavor: |
|
2022-12-05 01:36:26 +00:00
|
|
|
latest=false
|
2022-12-05 01:37:45 +00:00
|
|
|
tags: |
|
2022-12-05 00:40:17 +00:00
|
|
|
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
|
2022-10-14 16:59:20 +00:00
|
|
|
|
2022-12-05 00:40:17 +00:00
|
|
|
- name: Login to GitHub Container Registry
|
2023-02-23 20:40:04 +00:00
|
|
|
uses: redhat-actions/podman-login@v1
|
2020-11-15 03:56:43 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
2022-10-14 16:59:20 +00:00
|
|
|
|
2022-12-05 16:58:13 +00:00
|
|
|
- name: Update version
|
2022-12-05 01:36:26 +00:00
|
|
|
if: "github.event_name == 'release' && github.event.action == 'published'"
|
2022-12-05 19:39:07 +00:00
|
|
|
env:
|
|
|
|
REF: ${{ github.event.release.tag_name }}
|
2022-12-05 01:36:26 +00:00
|
|
|
run: |
|
2022-12-05 22:43:10 +00:00
|
|
|
sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:1}',/" config/app.php
|
2022-10-14 16:59:20 +00:00
|
|
|
|
2023-02-23 20:40:04 +00:00
|
|
|
- name: Build
|
|
|
|
id: build
|
|
|
|
uses: redhat-actions/buildah-build@v2
|
2020-11-15 03:56:43 +00:00
|
|
|
with:
|
2022-10-20 20:32:23 +00:00
|
|
|
context: .
|
2023-02-23 20:40:04 +00:00
|
|
|
containerfiles: ./Containerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
labels: ${{ steps.metadata.outputs.labels }}
|
|
|
|
tags: ${{ steps.metadata.outputs.tags }}
|
|
|
|
oci: true
|
|
|
|
|
|
|
|
- name: Push to GitHub Container Registry
|
|
|
|
uses: redhat-actions/push-to-registry@v2
|
2023-02-23 20:47:39 +00:00
|
|
|
if: "github.event_name != 'pull_request'"
|
2023-02-23 20:40:04 +00:00
|
|
|
with:
|
|
|
|
image: ${{ steps.build.outputs.image }}
|
|
|
|
tags: ${{ steps.build.outputs.tags }}
|
|
|
|
registry: ghcr.io
|