Merge pull request #9 from emrusz/update-workflows

Update workflows to new domain
This commit is contained in:
Em Rusz 2025-03-20 00:33:35 -04:00 committed by GitHub
commit 898bc95d2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 10 deletions

View file

@ -1,11 +1,11 @@
name: Build and Push Latest
on:
on:
push:
branches:
- main
jobs:
jobs:
update-registry:
name: Update Registry Image
runs-on: ubuntu-latest
@ -13,10 +13,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Login to git.beans.team
- name: Login to git.rusz.dev
uses: docker/login-action@v3
with:
registry: git.beans.team
registry: git.rusz.dev
username: em
password: ${{ secrets.REGISTRY_PASSWORD }}
@ -26,4 +26,4 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: git.beans.team/em/yuc:latest
tags: git.rusz.dev/em/yuc:latest

View file

@ -1,10 +1,10 @@
name: Build and Push on Release
on:
on:
release:
types: [published]
jobs:
jobs:
update-registry:
name: Update Registry Image
runs-on: ubuntu-latest
@ -12,10 +12,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Login to git.beans.team
- name: Login to git.rusz.dev
uses: docker/login-action@v3
with:
registry: git.beans.team
registry: git.rusz.dev
username: em
password: ${{ secrets.REGISTRY_PASSWORD }}
@ -25,4 +25,4 @@ jobs:
context: .
file: ./Dockerfile
push: true
tags: git.beans.team/em/yuc:${{ github.event.release.tag_name }}
tags: git.rusz.dev/em/yuc:${{ github.event.release.tag_name }}