Skip to content

Commit

Permalink
TES
Browse files Browse the repository at this point in the history
  • Loading branch information
MyPC committed Dec 14, 2023
1 parent 2e680b8 commit 66d8a4d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,12 @@ jobs:
VERSION=$(echo '${{ steps.get_latest_release.outputs.data }}' | jq -r '.tag_name')
ARCHS=("arm" "arm64")
for ARCH in ${ARCHS[@]}; do
git add files/tailscaled-${ARCH} files/tailscale-${ARCH}
git commit -m "Updated version to $VERSION in tailscale-${ARCH}"
if [[ -f files/tailscaled-${ARCH} && -f files/tailscale-${ARCH} ]]; then
git add files/tailscaled-${ARCH} files/tailscale-${ARCH}
git commit -m "Updated version to $VERSION for $ARCH"
else
echo "Files for architecture $ARCH do not exist"
fi
done
git add update.json
git commit -m "Updated versionCode and version to $VERSION in update.json"
Expand Down
Binary file removed files/tailscale-arm
Binary file not shown.
Binary file removed files/tailscale-arm64
Binary file not shown.
Binary file removed files/tailscaled-arm
Binary file not shown.
Binary file removed files/tailscaled-arm64
Binary file not shown.

0 comments on commit 66d8a4d

Please sign in to comment.