|
9 | 9 | - rust-1.** |
10 | 10 |
|
11 | 11 | env: |
12 | | - TARGET_BRANCH: 'gh-pages' |
13 | | - SHA: '${{ github.sha }}' |
14 | | - SSH_REPO: '[email protected]:${{ github.repository }}.git' |
| 12 | + TARGET_BRANCH: "gh-pages" |
| 13 | + SHA: "${{ github.sha }}" |
| 14 | + SSH_REPO: "[email protected]:${{ github.repository }}.git" |
15 | 15 |
|
16 | 16 | jobs: |
17 | 17 | deploy: |
18 | 18 | runs-on: ubuntu-latest |
19 | 19 | if: github.repository == 'rust-lang/rust-clippy' |
20 | 20 |
|
21 | 21 | steps: |
22 | | - # Setup |
23 | | - - name: Checkout |
24 | | - uses: actions/checkout@v4 |
| 22 | + # Setup |
| 23 | + - name: Checkout |
| 24 | + uses: actions/checkout@v4 |
25 | 25 |
|
26 | | - - name: Checkout |
27 | | - uses: actions/checkout@v4 |
28 | | - with: |
29 | | - ref: ${{ env.TARGET_BRANCH }} |
30 | | - path: 'out' |
| 26 | + - name: Checkout |
| 27 | + uses: actions/checkout@v4 |
| 28 | + with: |
| 29 | + ref: ${{ env.TARGET_BRANCH }} |
| 30 | + path: "out" |
31 | 31 |
|
32 | | - # Run |
33 | | - - name: Set tag name |
34 | | - if: startswith(github.ref, 'refs/tags/') |
35 | | - run: | |
36 | | - TAG=$(basename ${{ github.ref }}) |
37 | | - echo "TAG_NAME=$TAG" >> $GITHUB_ENV |
38 | | - - name: Set beta to true |
39 | | - if: github.ref == 'refs/heads/beta' |
40 | | - run: echo "BETA=true" >> $GITHUB_ENV |
| 32 | + # Run |
| 33 | + - name: Set tag name |
| 34 | + if: startswith(github.ref, 'refs/tags/') |
| 35 | + run: | |
| 36 | + TAG=$(basename ${{ github.ref }}) |
| 37 | + echo "TAG_NAME=$TAG" >> $GITHUB_ENV |
| 38 | + - name: Set beta to true |
| 39 | + if: github.ref == 'refs/heads/beta' |
| 40 | + run: echo "BETA=true" >> $GITHUB_ENV |
41 | 41 |
|
42 | | - # We need to check out all files that (transitively) depend on the |
43 | | - # structure of the gh-pages branch, so that we're able to change that |
44 | | - # structure without breaking the deployment. |
45 | | - - name: Use deploy files from master branch |
46 | | - run: | |
47 | | - git fetch --no-tags --prune --depth=1 origin master |
48 | | - git checkout origin/master -- .github/deploy.sh util/versions.py util/gh-pages/versions.html |
| 42 | + # We need to check out all files that (transitively) depend on the |
| 43 | + # structure of the gh-pages branch, so that we're able to change that |
| 44 | + # structure without breaking the deployment. |
| 45 | + - name: Use deploy files from master branch |
| 46 | + run: | |
| 47 | + git fetch --no-tags --prune --depth=1 origin master |
| 48 | + git checkout origin/master -- .github/deploy.sh util/versions.py util/gh-pages/versions.html |
49 | 49 |
|
50 | | - # Generate lockfile for caching to avoid build problems with cached deps |
51 | | - - name: cargo generate-lockfile |
52 | | - run: cargo generate-lockfile |
| 50 | + # Generate lockfile for caching to avoid build problems with cached deps |
| 51 | + - name: cargo generate-lockfile |
| 52 | + run: cargo generate-lockfile |
53 | 53 |
|
54 | | - - name: Cache |
55 | | - |
56 | | - with: |
57 | | - save-if: ${{ github.ref == 'refs/heads/master' }} |
| 54 | + - name: Cache |
| 55 | + |
| 56 | + with: |
| 57 | + save-if: ${{ github.ref == 'refs/heads/master' }} |
58 | 58 |
|
59 | | - - name: cargo collect-metadata |
60 | | - run: cargo collect-metadata |
| 59 | + - name: cargo collect-metadata |
| 60 | + run: cargo collect-metadata |
61 | 61 |
|
62 | | - - name: Deploy |
63 | | - run: | |
64 | | - eval "$(ssh-agent -s)" |
65 | | - ssh-add - <<< "${{ secrets.DEPLOY_KEY }}" |
66 | | - bash .github/deploy.sh |
| 62 | + - name: Deploy |
| 63 | + run: | |
| 64 | + eval "$(ssh-agent -s)" |
| 65 | + ssh-add - <<< "${{ secrets.DEPLOY_KEY }}" |
| 66 | + bash .github/deploy.sh |
0 commit comments