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 351c092 commit 2bb43bdCopy full SHA for 2bb43bd
.github/workflows/benchmark-release.yml
@@ -22,14 +22,16 @@ jobs:
22
node-version: '20.18.1'
23
cache: 'yarn'
24
25
- - name: Install dependencies
26
- run: yarn install --frozen-lockfile
+ # - name: Install dependencies
+ # run: yarn install --frozen-lockfile
27
28
- name: Get Previous Release
29
id: previous_release
30
run: |
31
# Parse current season and year from branch name
32
+ echo "GITHUB_REF: $GITHUB_REF"
33
[[ "$GITHUB_REF" =~ ^(winter|spring|summer)([0-9]+)$ ]]
34
+ echo "BASH_REMATCH: $BASH_REMATCH"
35
season="${BASH_REMATCH[1]}"
36
year="${BASH_REMATCH[2]}"
37
0 commit comments