chore: update readme #45
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
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_app: | |
runs-on: ubuntu-latest | |
environment: development | |
name: Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: NPM install | |
run: npm ci | |
- name: Build App | |
env: | |
ZE_SECRET_TOKEN: ${{ secrets.ZE_SECRET_TOKEN }} | |
ZE_API: ${{ vars.ZE_API }} | |
ZE_API_GATE: ${{ vars.ZE_API_GATE }} | |
run: | | |
cd zephyr-examples/create-mf-app-rspack | |
npm ci | |
npm run build | |
- name: Zephyr deploy summary | |
uses: ./ # Uses an action in the root directory | |
id: zephyr-summary | |
with: | |
application_uid: create-mf-app-rspack-host.zephyr-ci.opavlovskyi | |
- name: Print zephyr deploy summary | |
run: echo "Deployed to ${{ steps.zephyr-summary.outputs.version_url }}" | |