refactor(workflow): migrate from gitea to forgejo

This commit is contained in:
z0x 2025-03-23 12:32:05 -04:00
parent c71ef02381
commit 18f5369380
2 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ on:
jobs:
build-dist:
runs-on: ubuntu-latest
runs-on: docker
steps:
- name: Checkout code
@ -24,7 +24,7 @@ jobs:
bun run build
- name: Deploy to server
uses: appleboy/scp-action@master
uses: https://github.com/appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}

View file

@ -6,7 +6,7 @@ on:
jobs:
update-deps:
runs-on: ubuntu-latest
runs-on: docker
steps:
- name: Checkout code
@ -24,8 +24,8 @@ jobs:
- name: Commit updates
run: |
git config user.name "gitea-actions[bot]"
git config user.email "gitea-actions[bot]@git.z0x.ca"
git config user.name "actions[bot]"
git config user.email "actions[bot]@git.z0x.ca"
git add .
if git diff --staged --quiet; then
echo "No updates avalable"