.
All checks were successful
Update the stickers / update (push) Successful in 5s

This commit is contained in:
Mrrp 2025-01-27 13:15:45 -08:00
parent ddf7a05607
commit c288141b45
2 changed files with 17 additions and 13 deletions

View file

@ -8,16 +8,18 @@ on:
jobs:
publish:
- name: Checkout
uses: actions/checkout@v4
- name: Set repository name to lowercase
run: echo "REPO_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set repository name to lowercase
run: echo "REPO_NAME=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
- name: Authenticate with registry
run: docker login git.smgames.club -u ${{ github.repository_owner }} -p ${{ secrets.DOCKER_TOKEN }}
- name: Build Docker container
run: docker build --no-cache --progress=plain -t git.smgames.club/${{ env.REPO_NAME }}:latest .
- name: Authenticate with registry
run: docker login git.smgames.club -u ${{ github.repository_owner }} -p ${{ secrets.DOCKER_TOKEN }}
- name: Build Docker container
run: docker build --no-cache --progress=plain -t git.smgames.club/${{ env.REPO_NAME }}:latest .
- name: Push Docker container
run: docker push git.smgames.club/${{ env.REPO_NAME }}:latest
- name: Push Docker container
run: docker push git.smgames.club/${{ env.REPO_NAME }}:latest

View file

@ -6,5 +6,7 @@ on:
jobs:
update:
- name: Checkout
uses: actions/checkout@v4
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4