From 7300b465c56474f5c493b6e5e4fd97deaac9ad61 Mon Sep 17 00:00:00 2001 From: "www.grogogoll.com" Date: Mon, 17 Jun 2024 14:01:15 +0200 Subject: [PATCH 1/2] Create docker-image.yml --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image.yml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..3f53646 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) From 7a548781d7ed8340b1667c5ca77e1661d1013a1e Mon Sep 17 00:00:00 2001 From: Grogogoll Date: Mon, 11 Nov 2024 16:45:05 +0100 Subject: [PATCH 2/2] Create settings.json --- .vscode/settings.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ac01376 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "workbench.colorCustomizations": { + "activityBar.background": "#20330B", + "titleBar.activeBackground": "#2D4710", + "titleBar.activeForeground": "#F6FCF0" + } +} \ No newline at end of file