Skip to content

Commit d6145dc

Browse files
committed
fix workflow typo
1 parent aafc8e6 commit d6145dc

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/build_dev_container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Set Image Tag
5454
id: itag
55-
run: echo "itag=${{ steps.sha.outputs.branch }}-${{ steps.sha.outputs.sha }}-${{ steps.timestamp.outputs.timestamp }}" >> $GITHUB_OUTPUT
55+
run: echo "itag=${{ steps.branch.outputs.branch }}-${{ steps.sha.outputs.sha }}-${{ steps.timestamp.outputs.timestamp }}" >> $GITHUB_OUTPUT
5656

5757
- name: Build and push
5858
uses: docker/build-push-action@v6

.github/workflows/tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ on:
44
push:
55
branches:
66
- master
7+
paths:
8+
# Source files in each member
9+
- "compute/src/**"
10+
- "p2p/src/**"
11+
- "workflows/src/**"
12+
# Cargo in each member
13+
- "compute/Cargo.toml"
14+
- "p2p/Cargo.toml"
15+
- "workflows/Cargo.toml"
16+
# root-level Cargo
17+
- "Cargo.lock"
718
workflow_dispatch:
819

920
jobs:

0 commit comments

Comments
 (0)