We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93eb731 commit 79febebCopy full SHA for 79febeb
.github/workflows/ci.yml
@@ -20,16 +20,17 @@ jobs:
20
- name: Set app environment variables
21
run: |
22
APP_ID=$(cat app.manifest | jq '.info.id.name')
23
- echo APP_ID="$APP_ID" >> $GITHUB_ENV
+ echo APP_ID=$APP_ID | sed -r 's/"//g' >> $GITHUB_ENV
24
APP_NAME=$(echo "$APP_ID" | tr _ - )
25
- echo APP_NAME="$APP_NAME" >> $GITHUB_ENV
+ echo APP_NAME=$APP_NAME | sed -r 's/"//g' >> $GITHUB_ENV
26
27
- name: Excluding images from README
28
29
sed -i '/^!/d' README.md
30
31
- name: Bundle app source
32
33
+ echo ${{ env.APP_NAME }}
34
mkdir dist
35
tar -zcvf dist/${{ env.APP_NAME }}.tgz --exclude='.[^/]*' --exclude=./dist .
36
0 commit comments