feat(docs):add pyth to starknet docs (#1375) #2113
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: Push workflow | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-version: | |
name: Releasing a version | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message, 'chore') || (github.ref_name == 'main' && !contains(github.event.head_commit.message, 'chore(release)')) }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.USER_TOKEN }} | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: Install node_modules | |
run: yarn | |
- name: Authenticate with GitHub | |
run: | | |
git config --global user.name "${{ secrets.USER_NAME }}" | |
git config --global user.email "${{ secrets.USER_EMAIL }}" | |
- name: Generate Site | |
run: yarn generate | |
- name: Zip artifacts | |
run: zip -r ${{ steps.get-release-data.outputs.file }}.zip package.json CHANGELOG.md | |
- name: scp upload to production site | |
run: sshpass -p ${{ secrets.PROD_PASS }} scp -o 'StrictHostKeyChecking no' -r public_html/ ${{ secrets.PROD_USER }}@${{ secrets.PROD_IP }}:~/ |