Skip to content

Commit

Permalink
Github action changes and docker ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Aethrexal committed Nov 5, 2024
1 parent a813ac3 commit 5229639
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
.nuxt
.output
.git
4 changes: 4 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ name: Docker Publish
on:
push:
branches: ["main"]
pull_request:
types:
- closed

jobs:
docker:
runs-on: ubuntu-latest
if: ${{ contains(github.event.head_commit.message, '[Build]') || github.event.pull_request.merged == true }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"start": "node .output/server/index.mjs"
"start": "nuxt start"
},
"dependencies": {
"@nuxtjs/supabase": "^1.4.1",
Expand Down

0 comments on commit 5229639

Please sign in to comment.