Skip to content

Commit

Permalink
Fix conf
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Aug 3, 2024
1 parent f450ba2 commit b79542e
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/build-chrome-ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ jobs:
- name: Build Chrome Extension
run: bash ./scripts/build_chrome_extension.sh

- name: List build directory contents
run: ls -R build

- name: Get Version from pubspec.yaml
id: get_version
run: |
Expand All @@ -43,16 +40,12 @@ jobs:
- name: Zip build folder
run: |
if [ -d build/chrome-extension ]; then
cd build/chrome-extension
zip -r ../../chrome-extension-${{ steps.get_version.outputs.version_app }}.zip ./
else
echo "Directory build/chrome-extension does not exist"
exit 1
fi
cd build/chrome-extension
zip -r ../../chrome-extension-build-${{ steps.get_version.outputs.version_app }}.zip ./*
working-directory: build/chrome-extension

- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: chrome-extension-build-${{ steps.get_version.outputs.version_app }}
path: chrome-extension-${{ steps.get_version.outputs.version_app }}.zip
path: chrome-extension-build-${{ steps.get_version.outputs.version_app }}.zip

0 comments on commit b79542e

Please sign in to comment.