Skip to content

Commit

Permalink
added new release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Mar 19, 2021
1 parent a08ed30 commit bec3c90
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .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
2 changes: 2 additions & 0 deletions .github/workflows/security.yml
Expand Up @@ -5,6 +5,8 @@ name: Security
on:
push:
branches: [ main ]
tags:
- t*

jobs:
security:
Expand Down

0 comments on commit bec3c90

Please sign in to comment.