rust/.github/workflows/deploy.yml

38 lines
673 B
YAML
Raw Normal View History

2020-01-22 14:00:31 -06:00
name: Deploy
on:
push:
branches:
- master
2020-01-22 14:00:31 -06:00
release:
types:
- created
2020-01-22 14:00:31 -06:00
env:
TARGET_BRANCH: 'gh-pages'
SHA: '${{ github.sha }}'
SSH_REPO: 'git@github.com:${{ github.repository }}.git'
TAG_NAME: '${{ github.event.release.GITHUB_REF }}'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2020-02-07 15:24:41 -06:00
# Setup
2020-01-22 14:00:31 -06:00
- name: Checkout
uses: actions/checkout@v2.0.0
2020-02-07 15:24:41 -06:00
2020-01-22 14:00:31 -06:00
- name: Checkout
uses: actions/checkout@v2.0.0
with:
ref: ${{ env.TARGET_BRANCH }}
path: 'out'
2020-02-07 15:24:41 -06:00
# Run
2020-01-22 14:00:31 -06:00
- name: Deploy
run: |
eval "$(ssh-agent -s)"
ssh-add - <<< "${{ secrets.DEPLOY_KEY }}"
2020-01-26 08:40:53 -06:00
bash .github/deploy.sh