Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura196 committed Jul 3, 2024
1 parent b1324f9 commit a095e1d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/nuxtjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
Expand All @@ -37,9 +31,6 @@ jobs:
with:
node-version: 20

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Install dependencies
run: npm install

Expand All @@ -49,16 +40,22 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
path: ./.output/public

# Deployment job
deploy:
needs: build

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion components/Help.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const dialog = ref(false);
<template>
<v-btn @click="dialog = !dialog" class="ma-1">
<v-icon class="mr-1">{{ mdiInformation }}</v-icon>
{{ /*("add")*/ $t("help") }}
{{ $t("help") }}

<v-dialog v-model="dialog">
<v-card>
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@nuxt/image": "^1.7.0",
"@vue-leaflet/vue-leaflet": "^0.10.1",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
Expand Down

0 comments on commit a095e1d

Please sign in to comment.