Skip to content

Commit

Permalink
Please just work
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyvanlierop committed Dec 13, 2023
1 parent d65c943 commit 4f100c5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/dotnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
versionSpec: '5.x'

- name: Setup Bin Cache
uses: actions/cache@v3
uses: actions/cache@v3.6.0
with:
path: ./bin
key: bin-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}

- name: Setup NuGet Cache
uses: actions/cache@v3
uses: actions/cache@v3.6.0
with:
path: ./nuget
key: nuget-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
Expand All @@ -51,7 +51,6 @@ jobs:
- name: Update Version
run: sed -i "s/public const string Version = \".*\"/public const string Version = \"${{ steps.gitversion.outputs.MajorMinorPatch }}\"/" DIBS/DIBS.cs


- name: Restore dependencies
run: dotnet restore

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:

- name: Get Cache
uses: actions/cache@v3
uses: actions/cache@v3.6.0
with:
path: ./zip
key: zip-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/thunderstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
run: dotnet tool install --global tcli --version 0.1.4

- name: Get Bin Cache
uses: actions/cache@v3
uses: actions/cache@v3.6.0
with:
path: ./bin
key: bin-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}

- name: Setup Zip Cache
uses: actions/cache@v3
uses: actions/cache@v3.6.0
with:
path: ./zip
key: zip-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
Expand Down
2 changes: 1 addition & 1 deletion Thunderstore/thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
schemaVersion = "0.0.1"

[package]
namespace = "DIBS"
namespace = "joeyvanlierop"
name = "DIBS"
versionNumber = "1.0.0"
description = "Defend Items (from) Being Stolen"
Expand Down

0 comments on commit 4f100c5

Please sign in to comment.