Skip to content

Commit

Permalink
Separate build stages for beta builds
Browse files Browse the repository at this point in the history
  • Loading branch information
1zc committed Jan 2, 2024
1 parent 506a362 commit 008ec62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & Publish Docker image for LATEST tags
- name: Build & Publish Docker image for LATEST tag
run: |
docker build . -t ghcr.io/1zc/steamrt3-pterodactyl:latest -f docker/RT3-Dockerfile
docker push ghcr.io/1zc/steamrt3-pterodactyl:latest
- name: Build & Publish Docker image for BETA-LATEST tag
run: |
docker build . -t ghcr.io/1zc/steamrt3-pterodactyl:beta-latest -f docker/RT3Beta-Dockerfile
docker push ghcr.io/1zc/steamrt3-pterodactyl:beta-latest
publish-docker-image-dev:
Expand All @@ -29,9 +31,11 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & Publish Docker image for DEV tags
- name: Build & Publish Docker image for DEV tag
run: |
docker build . -t ghcr.io/1zc/steamrt3-pterodactyl:dev -f docker/RT3-Dockerfile
docker push ghcr.io/1zc/steamrt3-pterodactyl:dev
- name: Build & Publish Docker image for BETA-DEV tag
run: |
docker build . -t ghcr.io/1zc/steamrt3-pterodactyl:beta-dev -f docker/RT3Beta-Dockerfile
docker push ghcr.io/1zc/steamrt3-pterodactyl:beta-dev
2 changes: 1 addition & 1 deletion docker/RT3Beta-Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dockerfile with SteamRT3 - Public Beta branch
FROM registry.gitlab.steamos.cloud/steamrt/sniper/platform:latest-container-runtime-public-beta
LABEL author="Liam C" maintainer="[email protected]"
LABEL org.opencontainers.image.description SteamRT3 Platform image for Pterodactyl CSGO/CS2/Source engine servers.
LABEL org.opencontainers.image.description SteamRT3 Platform (Public Beta branch) image for Pterodactyl CSGO/CS2/Source engine servers.
LABEL org.opencontainers.image.source="https://github.com/1zc/cs2-pterodactyl"

# Prep OS
Expand Down

0 comments on commit 008ec62

Please sign in to comment.