Skip to content

Commit

Permalink
feat: Add automated build CI
Browse files Browse the repository at this point in the history
  • Loading branch information
octfx committed Nov 26, 2023
1 parent fb6ba4f commit 842d305
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 3 deletions.
96 changes: 96 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: Build and Release

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

outputs:
tag: ${{ steps.tag.outputs.tag }}

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Tag the repository
id: tag
run: |
git config user.name "GitHub Action"
git config user.email "[email protected]"
# See https://docs.github.com/en/get-started/using-git/dealing-with-special-characters-in-branch-and-tag-names
TAG=$(echo ${GITHUB_SHA} | cut -c1-8)
echo "$TAG"
echo "tag=$TAG" >> $GITHUB_OUTPUT
git tag -a $TAG -m "Automated build on push: $TAG" ${GITHUB_SHA}
git push origin $TAG
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'

- name: Restore dependencies
run: dotnet restore Loader

- name: Build
run: dotnet build --configuration Release Loader

- name: Publish Release
run: |
dotnet publish -c Release -o publish Loader
mkdir -p release
cp -r publish/* release/
shell: bash

build-windows:
runs-on: windows-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'

- name: Restore dependencies
run: dotnet restore Loader

- name: Build
run: dotnet build --configuration Release Loader

- name: Publish Release
run: |
dotnet publish -c Release -o publish-windows Loader
mkdir -p release-windows
cp -r publish-windows/* release-windows/
shell: bash

release:
needs: [ build, build-windows ]
runs-on: ubuntu-latest

steps:
- uses: ncipollo/release-action@v1
with:
artifacts: "release/*,release-windows/*"
body: "Automated build on push"
prerelease: true
tag: ${{ needs.build.outputs.tag }}
# - name: Create Release and Upload Asset
# uses: softprops/action-gh-release@v1
# with:
# files: |
# release/*
# release-windows/*
# tag_name: ${{ needs.build.outputs.tag }}
# draft: false
# prerelease: true
# body: "Automated build on push"
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ obj
packages
.vscode
Loader/.vs/
.github
api
k8s
website
.idea
redploy.bat
scunpacked.code-workspace
scunpacked.code-workspace
2 changes: 1 addition & 1 deletion Loader/Loader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp7</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
Expand Down

0 comments on commit 842d305

Please sign in to comment.