This repository was archived by the owner on Oct 13, 2024. It is now read-only.
Configure Renovate #854
This file contains hidden or 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
--- | |
name: CI | |
on: | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize, reopened] | |
push: | |
branches: [master] | |
workflow_dispatch: | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
setup_release: | |
name: Setup Release | |
outputs: | |
publish_release: ${{ steps.setup_release.outputs.publish_release }} | |
release_build: ${{ steps.setup_release.outputs.release_build }} | |
release_commit: ${{ steps.setup_release.outputs.release_commit }} | |
release_tag: ${{ steps.setup_release.outputs.release_tag }} | |
release_version: ${{ steps.setup_release.outputs.release_version }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Release | |
id: setup_release | |
uses: LizardByte/setup-release-action@v2024.520.193857 | |
with: | |
dotnet: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
build: | |
needs: | |
- setup_release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Build Plugin | |
id: jprm | |
uses: oddstr13/jellyfin-plugin-repository-manager@v1.1.0 | |
with: | |
path: . | |
output: ./build | |
version: ${{ needs.setup_release.outputs.release_version }} | |
dotnet-config: Release | |
dotnet-target: net8.0 | |
verbosity: debug | |
- name: Unit Test | |
id: test | |
run: | | |
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover --logger "console;verbosity=detailed" | |
- name: Upload coverage | |
# any except canceled or skipped | |
if: >- | |
always() && | |
(steps.test.outcome == 'success' || steps.test.outcome == 'failure') && | |
startsWith(github.repository, 'LizardByte/') | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Rename artifacts | |
run: | | |
mkdir -p artifacts | |
mv ./build/*.zip ./artifacts/themerr-jellyfin.zip | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: themerr-jellyfin | |
if-no-files-found: error | |
path: artifacts/ | |
- name: Create/Update GitHub Release | |
if: ${{ needs.setup_release.outputs.publish_release == 'true' }} | |
uses: LizardByte/create-release-action@v2024.520.193838 | |
with: | |
allowUpdates: true | |
discussionCategory: announcements | |
generateReleaseNotes: true | |
name: ${{ needs.setup_release.outputs.release_tag }} | |
prerelease: true | |
tag: ${{ needs.setup_release.outputs.release_tag }} | |
token: ${{ secrets.GH_BOT_TOKEN }} |