Skip to content

Commit 7c228a3

Browse files
committed
feat: Update backend workflow and .gitignore file
1 parent aefff31 commit 7c228a3

File tree

2 files changed

+6
-20
lines changed

2 files changed

+6
-20
lines changed

.github/workflows/backend.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,10 @@ jobs:
6161
toolchain: nightly
6262
override: true
6363

64-
- run: cargo build --release
64+
- run: |
65+
cargo build --release \
66+
&& ls -lh
6567
66-
- name: ls dir
67-
run: |
68-
ls -lh
6968
7069
- name: Docker Login
7170
uses: docker/login-action@v3
@@ -86,4 +85,5 @@ jobs:
8685
cache-from: type=gha
8786
file: ./Dockerfile
8887
cache-to: type=gha,mode=max
89-
platforms: linux/amd64
88+
platforms: linux/amd64
89+
context: ${{ github.workspace }}

.gitignore

+1-15
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
.idea
22

3-
# Added by cargo
4-
5-
/target
6-
# Logs
3+
target
74
logs
85
*.log
96
npm-debug.log*
@@ -16,17 +13,6 @@ node_modules
1613
**/node_modules
1714
**/dist
1815
**/.idea
19-
dist-ssr
20-
*.local
2116

22-
# Editor directories and files
23-
.vscode/*
24-
!.vscode/extensions.json
25-
.DS_Store
26-
*.suo
27-
*.ntvs*
28-
*.njsproj
29-
*.sln
30-
*.sw?
3117
charts/templates/configMap.yaml
3218
data

0 commit comments

Comments
 (0)