Skip to content

Commit

Permalink
Add CI, move folders, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
MSWS committed Jan 6, 2024
1 parent 59b2259 commit c8dade1
Show file tree
Hide file tree
Showing 7 changed files with 480 additions and 34 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: .NET Build and Release

on: push

jobs:
build:
runs-on: ubuntu-latest

container:
image: mcr.microsoft.com/dotnet/nightly/sdk:7.0

steps:
- uses: actions/checkout@v2

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet publish --configuration Debug

- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: net7.0-artifacts
path: |
bin/Debug/net7.0/publish/BlockRadio.deps.json
bin/Debug/net7.0/publish/BlockRadio.dll
bin/Debug/net7.0/publish/BlockRadio.pdb
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: net7.0-artifacts
path: bin/Debug/net7.0

- name: Create Tag
id: tag_version
run: |
DATE=$(date +'%y.%m.%d-%H%M%S')
echo "RELEASE_TAG=$DATE" >> $GITHUB_ENV
- name: Determine if Pre-release
id: prerelease
run: |
if [ "${{ github.ref }}" != "refs/heads/main" ]; then
echo "IS_PRERELEASE=true" >> $GITHUB_ENV
else
echo "IS_PRERELEASE=false" >> $GITHUB_ENV
fi
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.RELEASE_TAG }}
files: bin/Debug/net7.0/*
prerelease: ${{ env.IS_PRERELEASE }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit c8dade1

Please sign in to comment.