Skip to content

Commit

Permalink
Remove unnecessary deployment steps
Browse files Browse the repository at this point in the history
  • Loading branch information
talk2MeGooseman authored Mar 13, 2024
1 parent b2160d0 commit b727fb8
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,3 @@ jobs:
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN}}

deploy:
# Add a dependency to the build job
needs: build_and_publish

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Build Storybook
run: |
yarn release-storybook
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.out/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit b727fb8

Please sign in to comment.