Skip to content

Commit

Permalink
Create gcp-release.yml
Browse files Browse the repository at this point in the history
adding github actions
  • Loading branch information
Joel-Cripps authored Sep 9, 2021
1 parent b2c50c3 commit ffc0615
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/gcp-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: GCP-Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'npm install'
run: |
npm install
- name: 'Make the Distribution Directory'
run: |
npm run setup
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/gcp.zip"
token: ${{ secrets.GCP_DEPLOY }}

0 comments on commit ffc0615

Please sign in to comment.