From 926b2a7325a7cad64a8e8dfb3f3a4e4c9fb4bcd6 Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Thu, 6 May 2021 23:14:52 +0100 Subject: [PATCH] guide: update CI job names --- .github/workflows/guide.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/guide.yml b/.github/workflows/guide.yml index 2dea1b9f..c94d8c63 100644 --- a/.github/workflows/guide.yml +++ b/.github/workflows/guide.yml @@ -1,4 +1,4 @@ -name: gh-pages +name: guide on: push: @@ -12,7 +12,7 @@ env: CARGO_TERM_COLOR: always jobs: - deploy: + build: runs-on: ubuntu-latest outputs: tag_name: ${{ steps.prepare_tag.outputs.tag_name }} @@ -58,13 +58,13 @@ jobs: full_commit_message: 'Upload documentation for ${{ steps.prepare_tag.outputs.tag_name }}' release: - needs: deploy + needs: build runs-on: ubuntu-latest if: ${{ github.event_name == 'release' }} steps: - name: Create latest tag redirect env: - TAG_NAME: ${{ needs.deploy.outputs.tag_name }} + TAG_NAME: ${{ needs.build.outputs.tag_name }} run: | mkdir public echo "" > public/index.html @@ -74,5 +74,5 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public/ - full_commit_message: 'Release ${{ needs.deploy.outputs.tag_name }}' + full_commit_message: 'Release ${{ needs.build.outputs.tag_name }}' keep_files: true