Compare commits
15 Commits
1ac8717fec
...
feature/bu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3cc5a09f3d | ||
|
|
e6eb9ab5da | ||
|
|
fbd2cf9dfa | ||
|
|
d57bccde00 | ||
|
|
405a3b8c05 | ||
|
|
0f398e1683 | ||
|
|
a7f016c6bf | ||
|
|
1472b7be45 | ||
|
|
1d81240104 | ||
|
|
06f304f9cb | ||
|
|
841024e9f3 | ||
|
|
4b4b8826e6 | ||
|
|
5aa06f0915 | ||
|
|
f5d0689359 | ||
|
|
2476e7ab12 |
@@ -38,6 +38,28 @@ jobs:
|
|||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
run: bun --bun run format:check
|
run: bun --bun run format:check
|
||||||
|
|
||||||
|
build-docker-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Build
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Log in to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ vars.INSTANCE_URL }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.REGISTRY_ACCESS_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push image
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: ${{ vars.INSTANCE_URL }}/tech-reborn/phoenix:${{ github.sha }}
|
||||||
|
|
||||||
# type-check:
|
# type-check:
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# container:
|
# container:
|
||||||
|
|||||||
@@ -9,8 +9,8 @@
|
|||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"moduleResolution": "bundler"
|
"moduleResolution": "bundler",
|
||||||
}
|
},
|
||||||
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
|
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
|
||||||
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
|
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user