Fix windows beta builds

This commit is contained in:
Travis Burtrum 2022-10-06 23:00:27 -04:00
parent 2070696639
commit ed9a14e199
1 changed files with 12 additions and 2 deletions

View File

@ -30,8 +30,18 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Dynamically set MY_DATE environment variable
run: echo "BETA_TAG=beta-$(git show -s --format=%cd-%h --date=format:'%Y-%m-%d' HEAD)" >> $GITHUB_ENV
- name: Dynamically set BETA_TAG environment variable (not windows)
if: runner.os != 'Windows'
run: |
echo "BETA_TAG=beta-$(git show -s --format=%cd-%h --date=format:'%Y-%m-%d' HEAD)"
echo "BETA_TAG=beta-$(git show -s --format=%cd-%h --date=format:'%Y-%m-%d' HEAD)" >> $GITHUB_ENV
- name: Dynamically set BETA_TAG environment variable (windows)
if: runner.os == 'Windows'
run: |
chcp 65001 #set code page to utf-8
$gitout = & git show -s --format=%cd-%h --date=format:'%Y-%m-%d' HEAD
echo ("BETA_TAG=beta-" + $gitout)
echo ("BETA_TAG=beta-" + $gitout) >> $env:GITHUB_ENV
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}