Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conda_raw: handle rebuilds #280

Merged
merged 7 commits into from
Nov 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rename to pdfium_ver, fix triggers
mara004 committed Nov 22, 2023
commit d766b03ad75c950dbe2db93d1e00f359fb57dfc2
8 changes: 4 additions & 4 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ on:
options:
- raw
- helpers
raw_version:
pdfium_ver:
default: 'latest'
type: string
test:
@@ -65,12 +65,12 @@ jobs:
- name: Build raw package
if: inputs.package == 'raw'
run: |
python setupsrc/pypdfium2_setup/autorelease_conda_raw.py --pdfium-ver ${{ inputs.raw_version }}
./run craft --pdfium-ver ${{ inputs.raw_version }} conda_raw
python setupsrc/pypdfium2_setup/autorelease_conda_raw.py --pdfium-ver ${{ inputs.pdfium_ver }}
./run craft --pdfium-ver ${{ inputs.pdfium_ver }} conda_raw
- name: Build helpers package
if: inputs.package == 'helpers'
run: ./run craft --pdfium-ver ${{ inputs.raw_version }} conda_helpers
run: ./run craft --pdfium-ver ${{ inputs.pdfium_ver }} conda_helpers

- name: Upload artifact
uses: actions/upload-artifact@v3
1 change: 1 addition & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -248,6 +248,7 @@ jobs:
inputs: |
{
"package": "helpers",
"pdfium_ver": "latest",
"test": "true",
"publish": "${{ inputs.publish }}",
"py_version": "3.11"
1 change: 1 addition & 0 deletions .github/workflows/trigger_conda_raw.yaml
Original file line number Diff line number Diff line change
@@ -21,6 +21,7 @@ jobs:
inputs: |
{
"package": "raw",
"pdfium_ver": "latest",
"test": "true",
"publish": "true",
"py_version": "3.11"