Skip to content

Commit 79febeb

Browse files
committed
Changed environment variables for CI
1 parent 93eb731 commit 79febeb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@ jobs:
2020
- name: Set app environment variables
2121
run: |
2222
APP_ID=$(cat app.manifest | jq '.info.id.name')
23-
echo APP_ID="$APP_ID" >> $GITHUB_ENV
23+
echo APP_ID=$APP_ID | sed -r 's/"//g' >> $GITHUB_ENV
2424
APP_NAME=$(echo "$APP_ID" | tr _ - )
25-
echo APP_NAME="$APP_NAME" >> $GITHUB_ENV
25+
echo APP_NAME=$APP_NAME | sed -r 's/"//g' >> $GITHUB_ENV
2626
2727
- name: Excluding images from README
2828
run: |
2929
sed -i '/^!/d' README.md
3030
3131
- name: Bundle app source
3232
run: |
33+
echo ${{ env.APP_NAME }}
3334
mkdir dist
3435
tar -zcvf dist/${{ env.APP_NAME }}.tgz --exclude='.[^/]*' --exclude=./dist .
3536

0 commit comments

Comments
 (0)