Zip and Publish Subfolders #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Zip and Publish Subfolders | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
zip-and-publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Create zip files for each subfolder | ||
run: | | ||
for dir in $(find . -mindepth 1 -maxdepth 1 -type d); do | ||
zip -r "${dir##*/}.zip" "$dir" | ||
done | ||
- name: List zip files | ||
id: list_zip_files | ||
run: | | ||
files=$(ls *.zip) | ||
echo "files=$files" >> $GITHUB_ENV | ||
- name: Generate matrix configuration | ||
id: generate-matrix | ||
run: | | ||
files=($files) | ||
matrix="{\"include\":[" | ||
for file in "${files[@]}"; do | ||
matrix+="{\"file\":\"$file\"}," | ||
done | ||
matrix="${matrix%,}]}" | ||
echo "matrix=$matrix" >> $GITHUB_ENV | ||
upload-artifacts: | ||
needs: zip-and-publish | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: ${{ fromJson(env.matrix) }} | ||
Check failure on line 42 in .github/workflows/create-artifacts.yml GitHub Actions / Zip and Publish SubfoldersInvalid workflow file
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.file }} | ||
path: ${{ matrix.file }} |