initial commit
This commit is contained in:
commit
4de7eb13e2
3 changed files with 65 additions and 0 deletions
33
.forgejo/workflows/build.yaml
Normal file
33
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: Verifies PR
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- synchronize
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch: {}
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Install node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: latest
|
||||
-
|
||||
name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: code.bcarlin.net
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ github.token }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
pull: true
|
||||
tags: code.bcarlin.net/oci/browsers:latest
|
Loading…
Add table
Add a link
Reference in a new issue