-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented automatic build & release pipeline using GitHub Actions (#49
- Loading branch information
1 parent
07824fe
commit 45ee01c
Showing
4 changed files
with
69 additions
and
2 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,64 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build | ||
id: build | ||
run: | | ||
VERSION=$(sed -nr 's/^.*const string version.*"(.*)".*$/\1/pi' ./RockSniffer/Program.cs) | ||
echo "Sniffer version: $VERSION" | ||
echo "SNIFFER_VERSION=$VERSION" >> "$GITHUB_OUTPUT" | ||
dotnet build --configuration Release --no-restore | ||
- name: Publish | ||
env: | ||
SNIFFER_VERSION: ${{ steps.build.outputs.SNIFFER_VERSION }} | ||
run: | | ||
dotnet publish RockSniffer -c Release -o ./publish --runtime win-x64 --framework=net6.0-windows --self-contained false -p:PublishSingleFile=true | ||
cp -r ./addons ./publish/addons | ||
(cd ./publish && zip -r "$OLDPWD/RockSniffer $SNIFFER_VERSION.zip" .) | ||
echo "$SNIFFER_VERSION" > VERSION | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: RockSniffer-release | ||
path: | | ||
VERSION | ||
./RockSniffer ${{ steps.build.outputs.SNIFFER_VERSION }}.zip | ||
release: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: RockSniffer-release | ||
- name: Get version | ||
id: get-version | ||
run: | | ||
echo "SNIFFER_VERSION=$(cat VERSION)" >> "$GITHUB_OUTPUT" | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
name: v${{ steps.get-version.outputs.SNIFFER_VERSION }} | ||
tag: v${{ steps.get-version.outputs.SNIFFER_VERSION }} | ||
allowUpdates: true | ||
updateOnlyUnreleased: true | ||
commit: ${{ github.sha }} | ||
prerelease: true | ||
draft: true | ||
generateReleaseNotes: true | ||
artifacts: "*.zip" |
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