Skip to content

Commit

Permalink
Bumped dependencies
Browse files Browse the repository at this point in the history
new use uf just instead of bunch of scripts laying around
Move the two scripts needed by the pipeline to the utils folder
  • Loading branch information
sebagomez committed Dec 9, 2024
1 parent b26e2a0 commit 3cb43e4
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
sudo apt-get update
sudo apt-get install libxml2-utils
- name: Get tagname
run: echo "build_number=$(./version.sh)" >> $GITHUB_ENV
run: echo "build_number=$(./utils/version.sh)" >> $GITHUB_ENV

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Get tagname
run: |
build_number=$(./version.sh)
build_number=$(./utils/version.sh)
echo $build_number
app_number=$(sed 's/\.//g' <<< $build_number)
echo $app_number
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
{
"label": "azurite",
"command": "./azurite.sh"
"command": "./utils/azurite.sh"
},
{
"label": "build-and-azurite",
Expand Down
3 changes: 0 additions & 3 deletions build.sh

This file was deleted.

3 changes: 0 additions & 3 deletions docker-build.sh

This file was deleted.

5 changes: 0 additions & 5 deletions docker-run.sh

This file was deleted.

9 changes: 6 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# This help
default:
@just --list

Expand All @@ -23,17 +24,19 @@ test:
dotnet test ./tests/StorageLibTests/StorageLibTests.csproj

# Build Docker image as azurestorageexplorer:local
db:
dbuild:
docker build --tag azurestorageexplorer:local ./src

# Launches the local docker image at http://localhost:8080
dr:
# Launches the local docker image (azurestorageexplorer:local) at http://localhost:8080
drun:
echo App will run on http://localhost:8080
docker run --rm -p 8080:8080 --name azurestorageexplorer azurestorageexplorer:local

# Launches a docker compose with azurestorageexplorer:local and azurite
compose:
docker-compose -f ./docker-compose/azurestorageexplorer.yaml up

# Stops de docker compose
uncompose:
docker-compose -f ./docker-compose/azurestorageexplorer.yaml down

Expand Down
10 changes: 0 additions & 10 deletions publish.sh

This file was deleted.

8 changes: 4 additions & 4 deletions src/StorageLibrary/StorageLibrary.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>2.4.0</Version>
<Version>2.4.1</Version>
<Authors>Sebastián Gómez</Authors>
<Copyright>(C) 2018-2024 @sebagomez</Copyright>
<RepositoryUrl>https://github.com/sebagomez/azurestorageexplorer</RepositoryUrl>
Expand All @@ -11,9 +11,9 @@

<ItemGroup>
<PackageReference Include="Microsoft.Data.Services.Client" Version="5.8.5" />
<PackageReference Include="Azure.Storage.Files.Shares" Version="12.20.1" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.22.2" />
<PackageReference Include="Azure.Storage.Queues" Version="12.20.1" />
<PackageReference Include="Azure.Storage.Files.Shares" Version="12.21.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.23.0" />
<PackageReference Include="Azure.Storage.Queues" Version="12.21.0" />
<PackageReference Include="Azure.Data.Tables" Version="12.9.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/web/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<AzureStorageWebExplorerVersion>2.17.1</AzureStorageWebExplorerVersion>
<AzureStorageWebExplorerVersion>2.17.2</AzureStorageWebExplorerVersion>
</PropertyGroup>
</Project>
3 changes: 0 additions & 3 deletions test.sh

This file was deleted.

6 changes: 3 additions & 3 deletions tests/StorageLibTests/StorageLibTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.4" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.4" />
</ItemGroup>

<ItemGroup>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 3cb43e4

Please sign in to comment.