diff --git a/.github/workflows/deploying.yml b/.github/workflows/deploying.yml index 31076552..d083b10b 100644 --- a/.github/workflows/deploying.yml +++ b/.github/workflows/deploying.yml @@ -35,7 +35,7 @@ jobs: name: Deploy needs: build runs-on: ubuntu-latest - + steps: - name: Download artifact uses: actions/download-artifact@v2 @@ -49,3 +49,44 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./dist cname: movie.squeezebox.dev + + release: + name: Release + needs: build + runs-on: ubuntu-latest + + steps: + - name: Download artifact + uses: actions/download-artifact@v2 + with: + name: production-files + path: ./dist + + - name: Zip files + run: zip -r ./movie-web.zip ./dist + + - name: Get version + id: package-version + uses: martinbeentjes/npm-get-version-action@main + + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ steps.package-version.outputs.current-version }} + release_name: Movie web v${{ steps.package-version.outputs.current-version }} + draft: false + prerelease: false + + - name: Upload Release Asset + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./movie-web.zip + asset_name: movie-web.js + asset_content_type: application/zip