PDFium version v121.0.6164.0 #232
Workflow file for this run
This file contains 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: Build, Pack & Publish | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.* | |
source-url: https://api.nuget.org/v3/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Download libraries | |
run: ./download_package.sh | |
- name: Build | |
run: dotnet build src/PDFiumCore -c Release | |
- name: Pack | |
run: dotnet pack src/PDFiumCore -c Release -o ./artifacts | |
- name: Unit tests | |
run: dotnet test src/PDFiumCore.Tests -c Release | |
- name: Export artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
path: | | |
artifacts/*.nupkg | |
artifacts/*.snupkg | |
- name: Get tag name | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: olegtarasov/[email protected] | |
id: tagName | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
name: "PDFiumCore ${{ steps.tagName.outputs.tag }} Released" | |
files: | | |
artifacts/*.nupkg | |
artifacts/*.snupkg | |
- name: Push Nuget packages | |
if: startsWith(github.ref, 'refs/tags/') | |
run: dotnet nuget push artifacts/*.nupkg --api-key ${{ secrets.ORG_NUGET_AUTH_TOKEN }} --skip-duplicate |