coh-content-db-homecoming 2.0.0-rc.3 → 2.0.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +11 -11
- package/package.json +1 -1
|
@@ -44,6 +44,17 @@ jobs:
|
|
|
44
44
|
env:
|
|
45
45
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
46
46
|
|
|
47
|
+
- name: Prepare Pages Artifact
|
|
48
|
+
run: |
|
|
49
|
+
mkdir -p pages
|
|
50
|
+
cp -r src/main/resources/* pages/
|
|
51
|
+
cp dist/bundle.json pages/
|
|
52
|
+
|
|
53
|
+
- name: Upload Pages Artifact
|
|
54
|
+
uses: actions/upload-pages-artifact@v3
|
|
55
|
+
with:
|
|
56
|
+
path: pages/
|
|
57
|
+
|
|
47
58
|
- name: Create Release
|
|
48
59
|
uses: softprops/action-gh-release@v2
|
|
49
60
|
with:
|
|
@@ -65,17 +76,6 @@ jobs:
|
|
|
65
76
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
66
77
|
|
|
67
78
|
steps:
|
|
68
|
-
- name: Prepare Pages Artifact
|
|
69
|
-
run: |
|
|
70
|
-
mkdir -p pages
|
|
71
|
-
cp -r src/main/resources/* pages/
|
|
72
|
-
cp dist/bundle.json pages/
|
|
73
|
-
|
|
74
|
-
- name: Upload Pages Artifact
|
|
75
|
-
uses: actions/upload-pages-artifact@v3
|
|
76
|
-
with:
|
|
77
|
-
path: pages/
|
|
78
|
-
|
|
79
79
|
- name: Deploy to GitHub Pages
|
|
80
80
|
id: deployment
|
|
81
81
|
uses: actions/deploy-pages@v4
|
package/package.json
CHANGED