Skip to content

Commit

Permalink
docs: set runs-on tags back
Browse files Browse the repository at this point in the history
  • Loading branch information
benradstone committed Dec 17, 2024
1 parent 92abb8e commit b88dcfd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
build-self-hosted-runner:
if: ${{ github.event.inputs.useGitHubHostedLargeRunner != 'true' || github.event_name == 'schedule' }}
name: Build Website (Self-Hosted Runner)
runs-on: ["ubuntu-latest"]
runs-on: ["self-hosted", "linux", "x64", "vcenter3"]
steps:

- name: Force Failure
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
SLACK_COLOR: "danger"
SLACKIFY_MARKDOWN: true
ENABLE_ESCAPES: true
SLACK_MESSAGE: "The self-hosted runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. `<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>`."
SLACK_MESSAGE: "The self-hosted runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>."

# Use this workflow if you want to use the GitHub-hosted large runner. Useful for scenarios when you need a change to deploy faster than the self-hosted runner can build it.
build-large-runner:
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
SLACK_COLOR: "danger"
SLACKIFY_MARKDOWN: true
ENABLE_ESCAPES: true
SLACK_MESSAGE: "The large runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. `<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>`."
SLACK_MESSAGE: "The large runner release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>."

release:
name: "Release"
Expand Down Expand Up @@ -197,4 +197,4 @@ jobs:
SLACK_COLOR: "danger"
SLACKIFY_MARKDOWN: true
ENABLE_ESCAPES: true
SLACK_MESSAGE: "The release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. `<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>`."
SLACK_MESSAGE: "The release job for `${{ github.workflow }}` in `${{ github.repository }}` failed. <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|View details>."

0 comments on commit b88dcfd

Please sign in to comment.