Skip to content

Release v1.2.0

Compare
Choose a tag to compare
@fangbinwei fangbinwei released this 30 Aug 18:07
· 21 commits to master since this release

feat: add config 'exclude'
fix: fix slice thread safe

exclude

如果folder下的某些文件不需要上传

    - name: exclude some files
      uses: fangbinwei/aliyun-oss-website-action@v1
      with:
        folder: dist
        exclude: |
          tmp.txt
          tmp/
          tmp2/*.txt
          tmp2/*/*.txt
      # match dist/tmp.txt
      # match dist/tmp/
      # match dist/tmp2/a.txt
      # match dist/tmp2/a/b.txt not match dist/tmp2/tmp3/b.txt

不支持**