Skip to content

Commit

Permalink
Upgrade pipeline and docker versions (#37)
Browse files Browse the repository at this point in the history
* upgrade packages and unit test to net 7
* upgrade pipeline and docker to net 7
* version update

Co-authored-by: Maytham Fahmi <maythamfahmi@nextbix.dk>
  • Loading branch information
Maytham Fahmi and maythamfahmi authored Dec 8, 2022
1 parent 442367b commit 9fae027
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Set VERSION variable from tag
run: echo "VERSION=1.2.0" >> $GITHUB_ENV
#run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Set VERSION variable from tag
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion CryptoNet/CryptoNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Company>NextBix</Company>
<Authors>Maytham Fahmi</Authors>
<MinClientVersion>1.0.0</MinClientVersion>
<Version>2.0.0</Version>
<Version>2.2.0</Version>
<Title>CryptoNet</Title>
<Product>CryptoNet</Product>
<RootNamespace>CryptoNet</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build-env
WORKDIR /app
COPY . .

Expand Down

0 comments on commit 9fae027

Please sign in to comment.