TheDoctor0/zip-release

Help with excluding directory

Closed this issue · 4 comments

I have an build directory, which i want to hide. I am archiving a chrome extension into a zip and want to exclude the build directory.
This is my current workflow YAML:

name: CI

on:
  push:
  pull_request:

jobs:
 build:
    runs-on: windows-latest
    steps:
     - uses: actions/checkout@v2
     - name: Create report file
       run: date +%s > report.txt
       
     - name: Delete old Archive
       run: del "D:\a\Sidebar\Sidebar\Build\Sidebar_latest.zip"
       shell: cmd
    
     - name: Archive Release
       uses: thedoctor0/zip-release@master
       with:
         type: 'zip'
         filename: 'Sidebar_latest.zip'
         exclusions: '*.git* /*Build/* README.md report.txt'

     - name: Move to "Build" directory
       run: move /y D:\a\Sidebar\Sidebar\Sidebar_latest.zip D:\a\Sidebar\Sidebar\Build\
       shell: cmd
       
     - name: Commit report
       run: |
          git config --global user.name 'Minionguyjpro'
          git config --global user.email 'minionguyjpro@users.noreply.github.com'
          git add -A
          git commit -am "Made new build"
          git push

Nevermind i found out how

@Minionguyjpro can you share ? I am also having some issues with excluding a dir

@Minionguyjpro can you share ? I am also having some issues with excluding a dir

Of course, here it is:

name: Build a ZIP and CRX version

on:
  push:

jobs:
 build:
    runs-on: windows-latest
    steps:   
     - uses: actions/checkout@v2
     - name: Create report file
       run: date +%s > report.txt
       
     - name: Delete old ZIP and CRX
       run: del "D:\a\Sidebar\Sidebar\build\Sidebar_latest.zip"
    
     - name: Archive Release
       uses: thedoctor0/zip-release@master
       with:
         type: 'zip'
         filename: 'Sidebar_latest.zip'
         exclusions: '*.git* ./build/ README.md report.txt'

     - name: Move to "build" directory
       run: move /y D:\a\Sidebar\Sidebar\Sidebar_latest.zip D:\a\Sidebar\Sidebar\build\
       shell: cmd

     - name: Build CRX
       run: copy /y D:\a\Sidebar\Sidebar\build\Sidebar_latest.zip D:\a\Sidebar\Sidebar\build\Sidebar_latest.crx
       shell: cmd
       
     - name: Upload Sidebar ZIP Build Artifact
       uses: actions/upload-artifact@v2
       with:
         name: Sidebar Latest Beta ZIP
         path: D:\a\Sidebar\Sidebar\build\Sidebar_latest.zip
         
     - name: Upload Sidebar CRX Build Artifact
       uses: actions/upload-artifact@v2
       with:
         name: Sidebar Latest Beta CRX
         path: D:\a\Sidebar\Sidebar\build\Sidebar_latest.crx
       
     - name: Commit report
       run: |
          git config --global user.name '${{ secrets.git_username }}'
          git config --global user.email '${{ secrets.git_email }}'
          git add -A
          git commit -am "Made new build"
          git push       

I changed /*build/* to ./build/