Skip to content

ci: upload layer zip to github actions artifact #2

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

Merged
merged 3 commits into from
Oct 29, 2024
Merged
Changes from all commits
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
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ env:
MUPDF_VERSION: 1.24.10

jobs:
test:
build:
runs-on: ubuntu-latest
container: amazonlinux:2023
steps:
- uses: actions/setup-node@v4
with:
node-version: 20

- name: Install the necessary tools
run: |
yum update -y
Expand All @@ -46,6 +50,12 @@ jobs:
zip -r9 ../mupdf-layer.zip .
cd ..

- name: Upload the layer to GitHub Actions Artifacts
uses: actions/upload-artifact@v4
with:
name: mupdf-layer
path: mupdf-layer.zip

- name: Login to AWS
if: github.event_name == 'release'
run: |
Expand All @@ -65,3 +75,9 @@ jobs:
--layer-name mupdf \
--content S3Bucket=${{ secrets.S3_BUCKET }},S3Key=mupdf-layer.zip \
--description "MuPDF CLI tools v${{ env.MUPDF_VERSION }}"

- name: Upload to GitHub Releases
uses: svenstaro/upload-release-action@v2
if: github.event_name == 'release'
with:
file: mupdf-layer.zip