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: