diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10d57a8..a150eed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,9 @@ jobs: - name: react-example target: scratch_react_example out: react-example.tar.gz + - name: react-workshop + target: scratch_react_workshop + out: react-workshop.tar.gz - name: vue-starter target: scratch_vue_starter out: vue-starter.tar.gz @@ -113,6 +116,12 @@ jobs: name: react-example.tar.gz path: . + - name: Download react-workshop + uses: actions/download-artifact@v4 + with: + name: react-workshop.tar.gz + path: . + - name: Download vue-starter uses: actions/download-artifact@v4 with: @@ -165,6 +174,7 @@ jobs: ./nextjs-example.tar.gz ./react-starter.tar.gz ./react-example.tar.gz + ./react-workshop.tar.gz ./vue-starter.tar.gz ./vue-example.tar.gz ./angular-starter.tar.gz @@ -210,6 +220,12 @@ jobs: name: react-example.tar.gz path: out/templates + - name: Download react-workshop + uses: actions/download-artifact@v4 + with: + name: react-workshop.tar.gz + path: out/templates + - name: Download vue-starter uses: actions/download-artifact@v4 with: diff --git a/Dockerfile b/Dockerfile index dec267b..453253e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,6 +31,9 @@ RUN ./docker/compress react-starter FROM deps as build_react_example RUN ./docker/compress react-example +FROM deps as build_react_workshop +RUN ./docker/compress react-workshop + FROM deps as build_vue_starter RUN ./docker/compress vue-starter @@ -67,6 +70,9 @@ COPY --from=build_react_starter ./prepare/target/react-starter.tar.gz / FROM scratch AS scratch_react_example COPY --from=build_react_example ./prepare/target/react-example.tar.gz / +FROM scratch AS scratch_react_workshop +COPY --from=build_react_workshop ./prepare/target/react-workshop.tar.gz / + FROM scratch AS scratch_vue_starter COPY --from=build_vue_starter ./prepare/target/vue-starter.tar.gz /