rust-clippy/.github/workflows/deploy.yml

32 lines
635 B
YAML
Raw Normal View History

2020-01-22 20:00:31 +00:00
name: Deploy
on:
push:
branches: master
release:
types: [created]
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:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Checkout
uses: actions/checkout@v2.0.0
with:
ref: ${{ env.TARGET_BRANCH }}
path: 'out'
- name: Deploy
run: |
eval "$(ssh-agent -s)"
ssh-add - <<< "${{ secrets.DEPLOY_KEY }}"
2020-01-26 14:40:53 +00:00
bash .github/deploy.sh