Merge pull request #813 from DNNCommunity/release/0.20.2 #196
Workflow file for this run
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
name: Publish_Site | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- 'release/*' | |
jobs: | |
publish-site: | |
name: publish-site | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: publish-site | |
run: | | |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/DNNCommunity/dnn-elements.git | |
- name: Run './build.sh PublishPublishSite' | |
run: ./build.sh PublishSite | |
env: | |
GithubToken: ${{ secrets.GITHUB_TOKEN }} |