Skip to content

chore(v0.3.2/Param_Args): Bump default to 64kB and max to 1MB #8

chore(v0.3.2/Param_Args): Bump default to 64kB and max to 1MB

chore(v0.3.2/Param_Args): Bump default to 64kB and max to 1MB #8

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
paths:
- 'rplc/**'
- 'examples/**'
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build rplc
uses: Zeugwerk/[email protected]
with:
username: ${{ secrets.ACTIONS_ZGWK_USERNAME }}
password: ${{ secrets.ACTIONS_ZGWK_PASSWORD }}
- name: Upload *.library
uses: actions/upload-artifact@v4
with:
name: rplc
path: |
**/*.compiled-library
**/*.library
cd:
name: CD
needs: ci
if: false && github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: windows-latest
steps:
- uses: actions/download-artifact@v4
id: download-rplc
with:
name: rplc
- uses: Zeugwerk/[email protected]
with:
username: ${{ secrets.ACTIONS_ZGWK_USERNAME }}
password: ${{ secrets.ACTIONS_ZGWK_PASSWORD }}
path: ${{ steps.download-rplc.outputs.download-path}}