rust/.github/workflows/deploy.yml

42 lines
835 B
YAML
Raw Normal View History

2020-01-22 21:00:31 +01:00
name: Deploy
on:
push:
branches:
- master
tags:
- rust-1.**
2020-01-22 21:00:31 +01:00
env:
TARGET_BRANCH: 'gh-pages'
SHA: '${{ github.sha }}'
SSH_REPO: 'git@github.com:${{ github.repository }}.git'
jobs:
deploy:
runs-on: ubuntu-latest
if: github.repository == 'rust-lang/rust-clippy'
2020-01-22 21:00:31 +01:00
steps:
2020-02-07 22:24:41 +01:00
# Setup
2020-01-22 21:00:31 +01:00
- name: Checkout
uses: actions/checkout@v2.0.0
2020-02-07 22:24:41 +01:00
2020-01-22 21:00:31 +01:00
- name: Checkout
uses: actions/checkout@v2.0.0
with:
ref: ${{ env.TARGET_BRANCH }}
path: 'out'
2020-02-07 22:24:41 +01:00
# Run
- name: Set tag name
if: startswith(github.ref, 'refs/tags/')
run: |
TAG=$(basename ${{ github.ref }})
echo "::set-env name=TAG_NAME::$TAG"
2020-01-22 21:00:31 +01:00
- name: Deploy
run: |
eval "$(ssh-agent -s)"
ssh-add - <<< "${{ secrets.DEPLOY_KEY }}"
2020-01-26 15:40:53 +01:00
bash .github/deploy.sh