forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 5
29 lines (28 loc) · 963 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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@v2
with:
authkey: ${{ secrets.TAILSCALE_API_KEY }}
- 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 }}