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 e94235e commit 45d2811Copy full SHA for 45d2811
.github/workflows/release.yml
@@ -5,7 +5,6 @@ on:
5
inputs:
6
tag:
7
description: "uap-core ref to release"
8
- required: true
9
type: string
10
environment:
11
description: "environment to release for (testpypy or pypy)"
@@ -21,8 +20,9 @@ jobs:
21
20
with:
22
submodules: true
23
fetch-depth: 0
24
- - run: echo "${{ toJSON(inputs) }}"
25
- - run: echo "${{ toJSON(github.event) }}"
+ - name: update core
+ # needs to detach because we can update to a tag
+ run: git -C ua-parser-builtins switch --detach ${{ input.tag || 'master' }}
26
- name: Set up Python
27
uses: actions/setup-python@v5
28
0 commit comments