mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
31 lines
635 B
YAML
31 lines
635 B
YAML
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 }}"
|
|
bash .github/deploy.sh
|