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 00aa2d6 commit 6a715c8Copy full SHA for 6a715c8
.github/workflows/release.yml
@@ -4,6 +4,12 @@ on:
4
push:
5
branches:
6
- main
7
+ workflow_dispatch:
8
+ inputs:
9
+ branch:
10
+ description: 'Branch to release from'
11
+ required: true
12
+ default: 'main'
13
14
concurrency: ${{ github.workflow }}-${{ github.ref }}
15
@@ -19,7 +25,8 @@ jobs:
19
25
- name: Checkout Repo
20
26
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
21
27
with:
22
- token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
28
+ token: ${{ secrets.GITHUB_TOKEN }}
29
+ ref: ${{ inputs.branch }}
23
30
24
31
- name: Free up space on GitHub image
32
run: |
0 commit comments