forked from Shelf-nu/shelf.nu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workflow actions versions bump and further cleanup
Signed-off-by: Anatoli Nicolae <[email protected]>
- Loading branch information
1 parent
0dbc6c3
commit 8506a8a
Showing
2 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
/node_modules | ||
node_modules | ||
*.log | ||
.DS_Store | ||
.env | ||
/.cache | ||
/public/build | ||
/build | ||
.cache | ||
public/build | ||
build | ||
Dockerfile* | ||
docker-compose* | ||
.dockerignore | ||
.git | ||
.github | ||
.gitignore | ||
README.md | ||
.vscode | ||
.editorconfig | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,18 +31,18 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: ✖️ Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3.0.0 | ||
uses: docker/setup-buildx-action@v3.2.0 | ||
|
||
- name: ⚡️ Cache Docker layers | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: 👋 Log in to the Container registry | ||
uses: docker/login-action@v3.0.0 | ||
uses: docker/login-action@v3.1.0 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
|
@@ -59,7 +59,7 @@ jobs: | |
type=ref,event=tag | ||
- name: 🛠 Build and push Docker image | ||
uses: docker/build-push-action@v5.1.0 | ||
uses: docker/build-push-action@v5.3.0 | ||
with: | ||
context: . | ||
file: Dockerfile.image | ||
|