diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml new file mode 100644 index 0000000..e7faa66 --- /dev/null +++ b/.forgejo/workflows/deploy.yaml @@ -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 \ No newline at end of file diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml new file mode 100644 index 0000000..21280bd --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,6 @@ +on: [push] +jobs: + test: + runs-on: docker + steps: + - run: echo All Good \ No newline at end of file