Skip to content

Commit b8e1d07

Browse files
committed
fix: ci
1 parent 60674cf commit b8e1d07

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010
- name: Test
11-
- uses: devcontainers/[email protected]
11+
uses: devcontainers/[email protected]
1212
with:
1313
push: never
1414
runCmd: dotnet test

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
- name: Version
1414
run: echo "VERSION=${GITHUB_REF:10}+${GITHUB_SHA::8}" >> $GITHUB_ENV
1515
- name: Test
16-
- uses: devcontainers/[email protected]
16+
uses: devcontainers/[email protected]
1717
with:
1818
push: never
1919
runCmd: dotnet test
2020
- name: Publish
21-
- uses: devcontainers/[email protected]
21+
uses: devcontainers/[email protected]
2222
with:
2323
push: never
2424
runCmd: dotnet build -c Release && dotnet nuget push "**/*.nupkg" -k ${{ secrets.NUGET_KEY }} -n -s https://api.nuget.org/v3/index.json --skip-duplicate

0 commit comments

Comments
 (0)