Skip to content

Commit

Permalink
Add to-do's
Browse files Browse the repository at this point in the history
  • Loading branch information
marcaureln committed Mar 30, 2024
1 parent b5ac2ea commit 42d2950
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:

build:
name: Build Docker image
if: github.event_name == 'push' && github.ref == 'refs/heads/main' # Only build on push to main
# Only build on push to the `main` branch
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
needs: [test]
runs-on: ubuntu-latest
steps:
Expand All @@ -28,13 +29,13 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/inputstudio/nuxt3-starter # Modify this to your own image name
images: ghcr.io/inputstudio/nuxt3-starter # TODO: Modify this to your own image name
tags: |
type=raw,value=latest
type=sha
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry # Can be replaced with any other registry
- name: Login to GitHub Container Registry # TODO: Can be replaced with any other registry
uses: docker/login-action@v3
with:
registry: ghcr.io
Expand All @@ -43,6 +44,6 @@ jobs:
- name: Build image
uses: docker/build-push-action@v5
with:
push: false # Only build, set to true to push
push: false # TODO: Set it to true to push (currently set to false for testing purposes)
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"recommendations": [
"gruntfuggly.todo-tree",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"bradlc.vscode-tailwindcss",
Expand Down

0 comments on commit 42d2950

Please sign in to comment.