-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Actions workflow for releasing pdfium binary for apple pla…
…tforms
- Loading branch information
1 parent
5556924
commit 07c93c5
Showing
4 changed files
with
68 additions
and
16 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Build and release pdfium binaries for iOS and macOS | ||
on: | ||
push: | ||
tags: | ||
- pdfium-apple-* | ||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Build pdfium | ||
run: ./darwin/pdfium/build | ||
- name: Release pdfium | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
token: ${{ secrets.TOKEN_FOR_RELEASE }} | ||
tag_name: ${{ github.ref_name }} | ||
draft: false | ||
prerelease: false | ||
body: iOS/macOS pdfium prebuilt binary distribution for pdfrx (${{ github.ref_name }}). | ||
files: | | ||
./darwin/pdfium/pdfium-ios.tgz | ||
./darwin/pdfium/pdfium-macos.tgz |
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
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