Skip to content

Commit

Permalink
Revert "fix build"
Browse files Browse the repository at this point in the history
This reverts commit 25289db.
  • Loading branch information
Thiritin committed Jul 17, 2024
1 parent 25289db commit 7b7dad2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Check & deploy API documentation
permissions:
contents: read
pull-requests: write
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
deploy-doc:
if: ${{ github.event_name == 'push' }}
name: Deploy API documentation on Bump.sh
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Deploy API documentation
uses: bump-sh/github-action@v1
with:
doc: addde5ba-6454-49ad-a591-c5d0c4cf456f
token: ${{secrets.BUMP_SH_TOKEN}}
file: openapi.yml
api-diff:
if: ${{ github.event_name == 'pull_request' }}
name: Check API diff on Bump.sh
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Comment pull request with API diff
uses: bump-sh/github-action@v1
with:
doc: addde5ba-6454-49ad-a591-c5d0c4cf456f
token: ${{secrets.BUMP_SH_TOKEN}}
file: openapi.yml
command: diff
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}



1 change: 0 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue';

export default defineConfig({
assetsInclude: ['**/*.TTF'],
plugins: [
laravel({
input: 'resources/js/app.js',
Expand Down

0 comments on commit 7b7dad2

Please sign in to comment.