Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
[no ci] configure different git details?
Browse files Browse the repository at this point in the history
  • Loading branch information
adamthiede committed Jul 31, 2024
1 parent 8c37c8a commit 88869f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/version_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- name: install deps
shell: bash
run: |
git config --global user.email "actions@github.com"
git config --global user.name "Github Actions"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git config --global user.name "${{ github.actor }}"
./autobuild.sh
2 changes: 1 addition & 1 deletion update-node
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -ex

version=$1

node_version=$(curl https://raw.githubusercontent.com/signalapp/Signal-Desktop/${version}/package.json | jq .engines.node | tr -d '"')
node_version=$(curl -s https://raw.githubusercontent.com/signalapp/Signal-Desktop/${version}/package.json | jq .engines.node | tr -d '"')
if grep -q ${node_version} node.sums; then
echo "Already up to date"
exit 0
Expand Down

0 comments on commit 88869f4

Please sign in to comment.