Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
koehntopp committed Aug 22, 2021
2 parents 99ea450 + cdec209 commit 71de055
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/zipit.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
name: Zip Files

on: workflow_dispatch
on:
release:
types: [published]

jobs:
zip-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: papeloto/action-zip@v1
- name: Checkout code
uses: actions/checkout@v2
- name: Create directory
run:
mkdir build
- name: Create artifact
uses: montudor/[email protected]
with:
files: images/ manifest.json Screenshot.png popup.html popup.js w2ui-1.5.min.css w2ui-1.5.min.js
recursive: true
dest: extension.zip
- uses: actions/upload-artifact@v1
args: zip -X -r build/paypalfeecalculator.zip . -x zip** build** *.git* *.md .replit Archiv.zip index.html
- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
name: my-artifact
path: /zip/extension.zip
args: build/paypalfeecalculator.zip application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 71de055

Please sign in to comment.