From 8c157ba7846bb2ba67d43ce01f0d512258008ed9 Mon Sep 17 00:00:00 2001 From: Louis Guidez reind33r Date: Wed, 7 Feb 2024 23:00:53 +0100 Subject: [PATCH] testing actions --- .forgejo/workflows/deploy.yaml | 23 +++++++++++++++++++++++ .forgejo/workflows/test.yaml | 6 ++++++ 2 files changed, 29 insertions(+) create mode 100644 .forgejo/workflows/deploy.yaml create mode 100644 .forgejo/workflows/test.yaml 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