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

Commit

Permalink
Merge pull request #3 from enclave-networks/remove-exotic-records
Browse files Browse the repository at this point in the history
Switching over to .NET6, removing a variety of dependencies.
  • Loading branch information
enclave-alistair authored Dec 13, 2021
2 parents c792deb + bed082f commit 260ef77
Show file tree
Hide file tree
Showing 175 changed files with 163 additions and 16,666 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.x'

- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]

- name: Setup .NET 6 (SDK)
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/enclave-networks/index.json
env:
NUGET_AUTH_TOKEN: ${{github.token}}

- name: Build
run: dotnet build -c Release /p:Version=${{ steps.gitversion.outputs.SemVer }}

- name: Push Github Source Packages
if: github.event_name == 'push'
run: dotnet nuget push src/**/*${{ steps.gitversion.outputs.SemVer }}.nupkg --api-key ${{github.token}} -s https://nuget.pkg.github.com/enclave-networks/index.json --skip-duplicate --no-symbols true

- name: Create Release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.gitversion.outputs.SemVer }}
release_name: Release v${{ steps.gitversion.outputs.SemVer }}
body: Latest SDK Release
20 changes: 0 additions & 20 deletions ARSoft.Tools.Net.sln

This file was deleted.

254 changes: 0 additions & 254 deletions ARSoft.Tools.Net/ARSoft.Tools.Net.csproj

This file was deleted.

Loading

0 comments on commit 260ef77

Please sign in to comment.