-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added worlflow and missing asset file.
- Loading branch information
1 parent
0edddf7
commit 5ba776e
Showing
7 changed files
with
103 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Discord Webhook | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] # Default release branch | ||
paths: | ||
- 'src/**' | ||
- '.github/workflows/**' | ||
|
||
jobs: | ||
discord: | ||
uses: Digitalroot-Valheim/.github/.github/workflows/discord.yml@main | ||
with: | ||
repo_name: ${{ github.event.repository.name }} | ||
secrets: | ||
webhook_url: ${{ secrets.VALHEIM_DISCORD_TITANS_WEBHOOK_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Automated NuGet Dependency Updates | ||
|
||
concurrency: ci-${{ github.ref }} | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
schedule: | ||
- cron: "0 10 * * *" | ||
|
||
env: | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
DOTNET_CLI_TELEMETRY_OPTOUT: true | ||
|
||
jobs: | ||
call-workflow-nuget-autoupdate: | ||
uses: Digitalroot-Valheim/.github/.github/workflows/nuget.autoupdate.yml@main | ||
secrets: | ||
github-pat: ${{ secrets.AUTOMATED_DEPENDENCY_UPDATES_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Release | ||
|
||
concurrency: ci-${{ github.ref }} | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: [ main ] # Default release branch | ||
paths-ignore: | ||
- '.github/**' | ||
- 'docs/**' | ||
- '**/.ts/**' | ||
- '**/.nx/**' | ||
|
||
env: | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
DOTNET_CLI_TELEMETRY_OPTOUT: true | ||
|
||
jobs: | ||
call-workflow-nuget-release: | ||
uses: Digitalroot-Valheim/.github/.github/workflows/nuget.release.yml@main | ||
secrets: | ||
aws-access-key-id: ${{ secrets.NUGET_S3_REPO_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.NUGET_S3_REPO_KEY_SECRET }} | ||
nexus-api-key: ${{ secrets.NEXUS_API_KEY }} | ||
nexus-cookie-nxid-header: ${{ secrets.NEXUS_COOKIE_HEADER_NEXUSID }} | ||
nexus-cookie-sid-header: ${{ secrets.NEXUS_COOKIE_HEADER_SID_DEVELOP }} | ||
with: | ||
sln-file-name: Digitalroot.Valheim.GoldBars | ||
proj-file-name: Digitalroot.Valheim.GoldBars | ||
is-nuget-package: false | ||
nexus-enable-upload: true | ||
nexus-mod-id: 1448 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters