diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b9e593b..b90f985 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,10 +16,6 @@ jobs: 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: runs-on: ubuntu-latest if: github.ref == 'refs/heads/dev' # Running this job only for dev branch @@ -35,7 +31,3 @@ jobs: 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