Skip to content

Commit

Permalink
ci(server): fix typo in reference to name value from inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
pyshx committed Jun 8, 2023
1 parent 8199326 commit 24d6c39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ jobs:
uses: dsaltares/fetch-gh-release-asset@master
with:
repo: reearth/reearth
version: tags/${{ github.event.inputs.name && github.event.inputs.new_name != 'blank' && github.event.inputs.name || github.event.inputs.tag }}
file: reearth-web_${{ github.event.inputs.name && github.event.inputs.new_name != 'blank' && github.event.inputs.name || github.event.inputs.tag }}.tar.gz
version: tags/${{ github.event.inputs.name && github.event.inputs.name != 'blank' && github.event.inputs.name || github.event.inputs.tag }}
file: reearth-web_${{ github.event.inputs.name && github.event.inputs.name != 'blank' && github.event.inputs.name || github.event.inputs.tag }}.tar.gz
token: ${{ secrets.GITHUB_TOKEN }}
target: server/reearth-web.tar.gz
- name: Extract reearth/web
Expand Down

0 comments on commit 24d6c39

Please sign in to comment.