mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-05-04 10:33:47 +01:00
chore(actions): fix bash pattern syntax being improper
This commit is contained in:
parent
42834db248
commit
b55333d66e
1 changed files with 3 additions and 1 deletions
4
.github/workflows/debug.yml
vendored
4
.github/workflows/debug.yml
vendored
|
@ -10,7 +10,9 @@ jobs:
|
|||
steps:
|
||||
- name: Trim commit SHA
|
||||
id: trim_sha
|
||||
run: echo "trimmed_sha=${{ github.sha:0:7 }}" >> $GITHUB_ENV
|
||||
run: |
|
||||
commit_sha=${{ github.sha }}
|
||||
echo "trimmed_sha=${commit_sha:0:7}" >> $GITHUB_ENV
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
Loading…
Add table
Reference in a new issue