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