I'm more of a GitLab guy personally #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish | |
on: [push] | |
jobs: | |
publish-docker-image-main: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' # Running this job only for master branch | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build & Publish Docker image | |
run: | | |
docker build . -t ghcr.io/1zc/cs2-pterodactyl/steamrt3-pterodactyl:latest -f docker/Dockerfile | |
docker push ghcr.io/1zc/cs2-pterodactyl/steamrt3-pterodactyl:latest | |
publish-docker-image-dev: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/dev' # Running this job only for master branch | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build & Publish Docker image | |
run: | | |
docker build . -tag ghcr.io/1zc/cs2-pterodactyl/steamrt3-pterodactyl:dev -f docker/Dockerfile | |
docker push ghcr.io/1zc/cs2-pterodactyl/steamrt3-pterodactyl:dev |