Skip to content

Commit

Permalink
Merge pull request #340 from onflow/improvement/cd-1
Browse files Browse the repository at this point in the history
CD Improvements
  • Loading branch information
sideninja authored Aug 30, 2021
2 parents 5ea9616 + e3a3607 commit c9efe43
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ on:
types: [published]

jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/node@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
build:
runs-on: ubuntu-latest
steps:
Expand All @@ -30,4 +38,13 @@ jobs:
credentials: ${{ secrets.FLOW_HOSTING_PROD_SA }}
path: ./
glob: 'version.txt'
destination: flow-cli/
destination: flow-cli/
homebrew:
name: Bump Homebrew formula
runs-on: ubuntu-latest
steps:
- uses: mislav/bump-homebrew-formula-action@v1
with:
formula-name: flow-cli
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

0 comments on commit c9efe43

Please sign in to comment.