From bec3c9099051b6ddcbbde4eb7689e26d283c55dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Quixada=CC=81?= Date: Thu, 18 Mar 2021 21:32:21 -0400 Subject: [PATCH] added new release workflow. --- .github/workflows/release.yml | 19 +++++++++++++++++++ .github/workflows/security.yml | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..7e754ee --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +# Based on https://docs.github.com/en/actions/guides/publishing-nodejs-packages#publishing-packages-to-npm-and-github-packages +name: Release Test + +on: + workflow_run: + workflows: ["CI"] + tags: [t*] + push: + tags: t* + types: + - completed + - requested + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: echo it worked diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index db7e184..fa3f25c 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -5,6 +5,8 @@ name: Security on: push: branches: [ main ] + tags: + - t* jobs: security: