Skip to content

Commit

Permalink
Merge pull request #22 from prplecake/c#-rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
prplecake authored Mar 29, 2023
2 parents d62f48a + 3bc617c commit 3e1ad81
Show file tree
Hide file tree
Showing 55 changed files with 1,785 additions and 518 deletions.
71 changes: 0 additions & 71 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

64 changes: 64 additions & 0 deletions .github/workflows/dotnet-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: .NET Release

on:
release:
types: [published]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: |
dotnet nuget add source --username prplecake --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/CompostInTraining/index.json"
dotnet restore
- name: Build
run: dotnet build --no-restore

- name: Test
run: dotnet test --no-build --verbosity normal --logger "trx" --results-directory "./TestResults"

- uses: dorny/test-reporter@v1
if: always()
with:
name: .NET Test Results
path: TestResults/*.trx
reporter: dotnet-trx

publish:
env:
ZipFile: mastodon-bookmark-sync-${{ github.ref_name }}.zip
strategy:
matrix:
rid: [ linux-x64, win-x64, osx-x64 ]

runs-on: ubuntu-latest
name: publish-${{matrix.rid}}
needs: build
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Add NuGet source
run: dotnet nuget add source --username prplecake --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/CompostInTraining/index.json"
- name: Publish CLI (${{matrix.rid}})
run: |
dotnet publish BookmarkSync.CLI/BookmarkSync.CLI.csproj -c Release -r ${{matrix.rid}} --self-contained -p:PublishSingleFile=true -p:PublishReadyToRun=true
zip mastodon-bookmark-sync-${{ github.ref_name }}-${{matrix.rid}}.zip BookmarkSync.CLI/bin/Release/net7.0/${{matrix.rid}}/publish/*
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: mastodon-bookmark-sync-*.zip
51 changes: 51 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: .NET

on:
push:
branches: [ master ]
paths-ignore:
- 'README.md'
- '.gitignore'
- 'appsettings.Example.json'
- '.github/**'
- '.idea/**'
pull_request:
branches: [ master ]
paths-ignore:
- 'README.md'
- '.gitignore'
- 'appsettings.Example.json'
- '.github/**'
- '.idea/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: |
dotnet nuget add source --username prplecake --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/CompostInTraining/index.json"
dotnet restore
- name: Build
run: dotnet build --no-restore

- name: Test
run: dotnet test --no-build --verbosity normal --logger "trx" --results-directory "./TestResults"

- uses: dorny/test-reporter@v1
if: always()
with:
name: .NET Test Results
path: TestResults/*.trx
reporter: dotnet-trx
25 changes: 0 additions & 25 deletions .github/workflows/go.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/release.yml

This file was deleted.

Loading

0 comments on commit 3e1ad81

Please sign in to comment.