diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..6a9c3ac --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,38 @@ +name: Release + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Install pnpm + uses: pnpm/action-setup@v2 + + # after pnpm + - name: Use Node.js 16 + uses: actions/setup-node@v3 + with: + node-version: 16 + registry-url: https://registry.npmjs.org/ + cache: pnpm + + - name: Install dependencies + run: pnpm install + + - run: npm run generate --if-present + - uses: actions/upload-artifact@v3 + with: + name: Dist + path: dist + + - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/components/RecipePanel.vue b/components/RecipePanel.vue index 9062454..d7c258d 100644 --- a/components/RecipePanel.vue +++ b/components/RecipePanel.vue @@ -3,7 +3,7 @@ import { storeToRefs } from 'pinia' const rStore = useRecipeStore() -const { displayedRecipe, selectedStuff, curTool } = storeToRefs(rStore) +const { selectedStuff, curTool } = storeToRefs(rStore) const showSearchInput = ref(false)