Add .forgejo/workflows/test-registry.yaml
All checks were successful
CI / test (push) Successful in 12s
All checks were successful
CI / test (push) Successful in 12s
This commit is contained in:
parent
9d5c193f76
commit
447f410b50
1 changed files with 20 additions and 0 deletions
20
.forgejo/workflows/test-registry.yaml
Normal file
20
.forgejo/workflows/test-registry.yaml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:22-bookworm
|
||||
permissions:
|
||||
packages: write
|
||||
contents: read
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Login
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: git.rangelovk.xyz
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ github.token }}
|
||||
- uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: git.rangelovk.xyz/${{ github.repository }}:latest
|
||||
Loading…
Add table
Add a link
Reference in a new issue