🚀 Deploy Example Apps: Replace all entries in path instead of the first #349
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: 'Deploy Example Apps' | |
run-name: '🚀 Deploy Example Apps: ${{ github.event.head_commit.message || github.event.pull_request.title }}' | |
on: | |
push: | |
branches: | |
- main | |
- release | |
jobs: | |
vue: | |
name: 'Vue' | |
uses: ./.github/workflows/_reuse_.deploy.yml | |
secrets: inherit | |
with: | |
appBasename: 'vue' | |
nodeVersion: '20-alpine' | |
svelte: | |
name: 'Svelte' | |
uses: ./.github/workflows/_reuse_.deploy.yml | |
secrets: inherit | |
with: | |
appBasename: 'svelte' | |
nodeVersion: '20-alpine' | |
react: | |
name: 'React' | |
uses: ./.github/workflows/_reuse_.deploy.yml | |
secrets: inherit | |
with: | |
appBasename: 'react' | |
nodeVersion: '20-alpine' | |
solid: | |
name: 'Solid' | |
uses: ./.github/workflows/_reuse_.deploy.yml | |
secrets: inherit | |
with: | |
appBasename: 'solid' | |
nodeVersion: '20-alpine' | |
vue-meteor-v3: | |
name: 'Meteor v3' | |
uses: ./.github/workflows/_reuse_.deploy.yml | |
secrets: inherit | |
with: | |
appBasename: 'vue-zodern-relay' | |
nodeVersion: '20-alpine' | |
vue-ssr: | |
name: 'Vue + SSR' | |
uses: ./.github/workflows/_reuse_.deploy.yml | |
secrets: inherit | |
with: | |
appBasename: 'vue-ssr' | |
nodeVersion: '20-alpine' |