chore: cleanup some references #93
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 Docker Images 🐋 📦 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
version: | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.create_tag.outputs.new_tag }} | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Bump Version and Create Tag 🏷️ | |
id: create_tag | |
uses: anothrNick/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true | |
DEFAULT_BUMP: patch | |
DRY_RUN: true | |
build: | |
needs: version | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: write | |
attestations: write | |
id-token: write | |
strategy: | |
matrix: | |
game: [cstrike, valve, czero, dmc, gearbox, ricochet, dod, tfc] | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Set up Docker Buildx 🛠️ | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub 🐳 | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Login to GitHub Container Registry 🐳 | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Replace fallback value in Dockerfile and entrypoint.sh | |
run: | | |
sed -i "s/\${GAME:-valve}/\${GAME:-${{ matrix.game }}}/g" Dockerfile | |
sed -i "s/\${GAME:-valve}/\${GAME:-${{ matrix.game }}}/g" entrypoint.sh | |
- name: Build and Push Docker Image to DockerHub 🐳 | |
uses: docker/build-push-action@v6 | |
env: | |
GAME: ${{ matrix.game }} | |
with: | |
context: . | |
push: true | |
tags: | | |
jives/hlds:${{ matrix.game }} | |
jives/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }} | |
build-args: GAME=${{ matrix.game }} | |
- name: Set repo owner to lowercase | |
id: repo_owner | |
run: echo "::set-output name=repo_owner::$(echo ${{ github.repository_owner }} | awk '{print tolower($0)}')" | |
- name: Build and Push Docker Image to GitHub Container Registry 🐳 | |
uses: docker/build-push-action@v6 | |
env: | |
GAME: ${{ matrix.game }} | |
with: | |
context: . | |
push: true | |
tags: | | |
ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }} | |
ghcr.io/${{ steps.repo_owner.outputs.repo_owner }}/hlds:${{ matrix.game }}-${{ needs.version.outputs.version }} | |
build-args: GAME=${{ matrix.game }} | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: Bump Version and Create Tag 🏷️ | |
id: create_tag | |
if: github.ref == 'refs/heads/main' | |
uses: anothrNick/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true | |
DEFAULT_BUMP: patch | |
- name: Create Release 🚀 | |
id: create_release | |
if: github.ref == 'refs/heads/main' | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.create_tag.outputs.new_tag }} | |
release_name: ${{ steps.create_tag.outputs.new_tag }} | |
draft: false | |
prerelease: false |