Created
July 28, 2021 11:08
-
-
Save LarsBergqvist/d24393e5b09fae9c7884f5339df31fdb to your computer and use it in GitHub Desktop.
deploy job
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deploy: | |
needs: test-and-build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: build-artifacts | |
path: dist/gh-actions-example | |
- name: Deploy to gh-pages branch | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: dist/gh-actions-example |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment