Init forgejo actions
All checks were successful
/ build-image (push) Successful in 29s

This commit is contained in:
Peter Cai 2024-02-15 14:17:56 -05:00
parent 2a4b6ed116
commit 207d61d724

View file

@ -0,0 +1,20 @@
on: [push]
jobs:
build-image:
runs-on: docker
container:
image: node:18-bookworm
steps:
- name: Repository Checkout
uses: https://gitea.angry.im/actions/checkout@v3
with:
submodules: recursive
- name: Mask Secrets
run: 'echo "::add-mask::${{ secret.FORGEJO_TOKEN }}'
- name: Setup podman
run: |
apt-get update && apt-get install -y podman
podman login gitea.angry.im --password ${{ secret.FORGEJO_TOKEN }}