From d36c6125e3d79518b941b0c2d28089fac98be3e7 Mon Sep 17 00:00:00 2001 From: Jelle van Snik Date: Tue, 27 Dec 2022 14:41:47 +0100 Subject: [PATCH] fix github actions syntax --- .github/workflows/deploying.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploying.yml b/.github/workflows/deploying.yml index d083b10b..ef94ecc9 100644 --- a/.github/workflows/deploying.yml +++ b/.github/workflows/deploying.yml @@ -81,12 +81,12 @@ jobs: 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 + 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