Skip to content

Commit

Permalink
fix workflow yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dsuren1 committed Oct 18, 2024
1 parent d6699dc commit 4824059
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cadastrapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,20 @@ jobs:
run: npm run ext:build

- name: "publish zip as artifact"
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: Cadastrapp-${{ github.sha }}
path: dist/Cadastrapp.zip

- name: "change webpack config to avoid minification"
run: sed -i -e 's/prod: true/prod: false/' build/extension/prod-webpack.config.js
run: |
sed -i -e 's/prod: true/prod: false/' build/extension/prod-webpack.config.js
- name: "build unminified"
run: npm run ext:build

- name: "publish zip as artifact"
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: Cadastrapp-unminified-${{ github.sha }}
path: dist/Cadastrapp.zip

0 comments on commit 4824059

Please sign in to comment.