Skip to content

Commit

Permalink
chore: rm lock+ fix bad git diff+ simplify (#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-bompart authored Oct 26, 2023
1 parent 1dd3949 commit 9ae1440
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
Empty file removed .git-lock
Empty file.
15 changes: 9 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,11 @@ jobs:
- name: Find modified Snapshots
id: snapshots-path
run: |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "snapshotsPath<<$EOF" >> "$GITHUB_ENV"
git diff --name-only *.yml >> "$GITHUB_ENV"
echo "$EOF" >> "$GITHUB_ENV"
{
echo "snapshotsPath<<EOF"
git diff --name-only **/*.snap
echo EOF
} >> "$GITHUB_ENV"
- name: Upload Jest Snapshots
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
with:
Expand Down Expand Up @@ -275,8 +276,10 @@ jobs:
run: npm ci
- name: Get CLI version
run: |
echo "cliVersion=" >> "$GITHUB_ENV"
cat packages/cli/core/package.json | jq '.version' >> "$GITHUB_ENV"
{
printf "cliVersion="
cat packages/cli/core/package.json | jq -r '.version'
} >> "$GITHUB_ENV"
- name: Build
run: npm run build
- name: Setup Temporary Keychain
Expand Down

0 comments on commit 9ae1440

Please sign in to comment.