Release Latest Browsers #232
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Latest Browsers | |
on: | |
workflow_dispatch: | |
inputs: | |
revision: | |
description: SHA (first 12 chars) to release | |
type: string | |
jobs: | |
release: | |
name: Trigger release run | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Connect to Tailscale | |
uses: tailscale/github-action@v1 | |
with: | |
authkey: ${{ secrets.TAILSCALE_API_KEY }} | |
version: 1.38.4 | |
- uses: Bhacaz/checkout-files@v2 | |
with: | |
files: .github | |
branch: ${{ github.head_ref || github.ref_name }} | |
- uses: ./.github/actions/release | |
env: | |
BUILD_TEST_REVISION: ${{ inputs.revision }} | |
BUILD_TEST_AUTHORIZATION: ${{ secrets.BUILD_TEST_AUTHORIZATION }} | |
BUILD_TEST_HOSTNAME: a49855c191a944333918aea7ad31bc76-6a8a830d89921d8a.elb.us-east-2.amazonaws.com | |
BUILD_TEST_PORT: ${{ secrets.BUILD_TEST_PORT }} | |
BUILD_TEST_INSECURE: ${{ secrets.BUILD_TEST_INSECURE }} |