We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 768b2fc commit 28c45caCopy full SHA for 28c45ca
.github/workflows/cloud-acc-tests.yml
@@ -5,6 +5,13 @@ on:
5
tests:
6
description: 'Tests to run (regex passed to -run)'
7
default: '.*'
8
+ workflow_call:
9
+ inputs:
10
+ tests:
11
+ type: string
12
+ description: 'Tests to run (regex passed to -run)'
13
+ default: '.*'
14
+
15
16
# These permissions are needed to assume roles from Github's OIDC.
17
permissions:
.github/workflows/release.yml
@@ -15,8 +15,13 @@ on:
tags:
- 'v*'
jobs:
18
+ # Cloud tests don't run on every PR. We need to be sure they all pass before we release.
19
+ run-cloud-tests:
20
+ uses: ./.github/workflows/cloud-acc-tests.yml
21
goreleaser:
22
runs-on: ubuntu-latest
23
+ needs:
24
+ - run-cloud-tests
25
steps:
26
- name: Checkout
27
uses: actions/checkout@v4
0 commit comments