Skip to content

Commit

Permalink
nit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur1 committed Mar 9, 2024
1 parent 8dfb640 commit 123b26c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/wf-deploy-cloudflare-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ on:
required: true
type: string

permissions:
id-token: write
contents: read

concurrency:
group: ${{ inputs.environment-name }}

Expand All @@ -48,7 +44,7 @@ jobs:
- name: Get Server Version Tag
id: server-version
run: |
echo "version=$(cat ${{ inputs.server-version-file }} | cut -c 2-)" \
echo "version=$(cut -c 2- ${{ inputs.server-version-file }})" \
>> "$GITHUB_OUTPUT"
outputs:
ref: ${{ steps.app-ref.outputs.ref }}
Expand Down Expand Up @@ -81,6 +77,8 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm ${{ inputs.build-cmd }}
env:
TZ: Asia/Tokyo
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@1
with:
Expand Down

0 comments on commit 123b26c

Please sign in to comment.