v2.3.4 #38
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: Publish Assets | |
on: | |
release: | |
types: | |
- edited | |
- published | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: package.json | |
- name: Install | |
run: bun i | |
- name: Build | |
run: bun run build | |
- name: Inject Mozilla Cert Bundles | |
run: curl https://curl.se/ca/cacert.pem -o build/public-certs.pem | |
- name: Zip Lambda | |
run: zip -r -qq proxy-lambda.zip build node_modules | |
- name: Upload Release Assets | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: proxy-lambda.zip |