diff --git a/.github/workflows/zip.yml b/.github/workflows/zip.yml index 74a2411..d87b882 100644 --- a/.github/workflows/zip.yml +++ b/.github/workflows/zip.yml @@ -14,6 +14,7 @@ jobs: - '40.0' - '40' - '41' + - '42' steps: - uses: actions/checkout@v2 @@ -58,6 +59,12 @@ jobs: name: 41.zip path: . + - name: Download 42 + uses: actions/download-artifact@v2 + with: + name: 42.zip + path: . + - name: Bump version and push tag id: tag_version uses: mathieudutour/github-tag-action@v5.1 @@ -118,3 +125,13 @@ jobs: asset_name: 41.zip asset_content_type: application/zip + - name: Release 42 + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./42.zip + asset_name: 42.zip + asset_content_type: application/zip +