Skip to content
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.

Commit

Permalink
ci: move release step back into main file
Browse files Browse the repository at this point in the history
  • Loading branch information
saitho committed Jun 11, 2020
1 parent 8b345f0 commit 7685531
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 35 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,28 @@ jobs:
uses: actions/upload-artifact@v2
with:
path: dist/terraform-provider-nginx

release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
name: terraform-provider-nginx
path: dist/terraform-provider-nginx
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 12
- name: PNPM install
run: npm i -g pnpm && pnpm i -P
- run: pnpm install
- name: Semantic Release Action
uses: saitho/semantic-release-action-pnpm@master
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
env:
GIT_AUTHOR_EMAIL: [email protected]
GIT_AUTHOR_NAME: stackhead-bot
GIT_COMMITTER_EMAIL: [email protected]
GIT_COMMITTER_NAME: stackhead-bot
35 changes: 0 additions & 35 deletions .github/workflows/release.yml

This file was deleted.

0 comments on commit 7685531

Please sign in to comment.