parent
62ce7b242c
commit
8c157ba784
2 changed files with 29 additions and 0 deletions
23
.forgejo/workflows/deploy.yaml
Normal file
23
.forgejo/workflows/deploy.yaml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
# jobs:
|
||||||
|
# deploy:
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# steps:
|
||||||
|
# - name: Checkout
|
||||||
|
# uses: xxxxxxxxxxxxxxxx@xx
|
||||||
|
# - name: Setup Node.js
|
||||||
|
# uses: xxxxxxxxxxxxxxxxxx@xx
|
||||||
|
# with:
|
||||||
|
# node-version: '12.x'
|
||||||
|
# - name: Install dependencies
|
||||||
|
# run: npm install
|
||||||
|
# - name: Build
|
||||||
|
# run: npm run build
|
||||||
|
# - name: Deploy
|
||||||
|
# uses: xxxxxxxxxxxxxxxxxxxxxxxxxx@xx
|
||||||
|
# with:
|
||||||
|
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# publish_dir: ./dist
|
6
.forgejo/workflows/test.yaml
Normal file
6
.forgejo/workflows/test.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- run: echo All Good
|
Loading…
Reference in a new issue