Skip to content

Commit 1246a61

Browse files
authored
create dotnet build action
1 parent ce54446 commit 1246a61

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/dotnet.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Docker Image CI
2+
3+
on: [push]
4+
5+
jobs:
6+
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: Build the Docker image
14+
run: |
15+
docker build . --file Dockerfile --tag streamsdb/dotnet-driver
16+
pushd dotnet
17+
docker build --build-arg VERSION="0.9.5-dev" -t streamsdb/dotnet-driver .
18+
#docker run --rm --name push-packages streamsdb/dotnet-driver --source https://api.nuget.org/v3/index.json --api-key $NUGET_TOKEN
19+
popd

0 commit comments

Comments
 (0)