Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #9 from openmod/fix_deploy
Browse files Browse the repository at this point in the history
Update deployment.yml
  • Loading branch information
Trojaner authored Nov 28, 2023
2 parents 7b7f58b + 6cc00c6 commit 6fd20be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
name: "OpenMod Installer for RocketMod Deployment"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Checkout Repository
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.100
dotnet-version: 7.x
- name: Install dependencies
run: dotnet restore src/OpenMod.Installer.RocketMod.csproj
- name: Update version
Expand All @@ -27,14 +27,14 @@ jobs:
run: dotnet build src/OpenMod.Installer.RocketMod.csproj --configuration Release --no-restore
- name: Create Release
id: create_release
uses: actions/create-release@v1
uses: actions/create-release@main
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ github.event.inputs.version }}
release_name: v${{ github.event.inputs.version }}
draft: false
prerelease: false
prerelease: false
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 6fd20be

Please sign in to comment.