dargstack_rgen 0.8.0 → 0.8.1
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.
|
@@ -9,18 +9,18 @@ on:
|
|
|
9
9
|
jobs:
|
|
10
10
|
build:
|
|
11
11
|
name: Build
|
|
12
|
-
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.
|
|
12
|
+
uses: dargmuesli/github-actions/.github/workflows/docker.yml@0.22.0
|
|
13
13
|
secrets:
|
|
14
14
|
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
15
15
|
DOCKER_HUB_USER_NAME: ${{ secrets.DOCKER_HUB_USER_NAME }}
|
|
16
16
|
release-semantic:
|
|
17
17
|
needs: build
|
|
18
18
|
name: Release (semantic)
|
|
19
|
-
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.
|
|
19
|
+
uses: dargmuesli/github-actions/.github/workflows/release-semantic.yml@0.22.0
|
|
20
20
|
secrets:
|
|
21
21
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
22
22
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
23
23
|
release-assets:
|
|
24
24
|
needs: release-semantic
|
|
25
25
|
name: Release (assets)
|
|
26
|
-
uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.
|
|
26
|
+
uses: dargmuesli/github-actions/.github/workflows/release-assets.yml@0.22.0
|
|
@@ -7,7 +7,7 @@ on:
|
|
|
7
7
|
jobs:
|
|
8
8
|
release-schedule:
|
|
9
9
|
name: Release (scheduled)
|
|
10
|
-
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.
|
|
10
|
+
uses: dargmuesli/github-actions/.github/workflows/release-schedule.yml@0.22.0
|
|
11
11
|
secrets:
|
|
12
12
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
13
13
|
with:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.8.1](https://github.com/dargmuesli/dargstack_rgen/compare/0.8.0...0.8.1) (2022-12-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **docker:** correct build stage name ([ea0def1](https://github.com/dargmuesli/dargstack_rgen/commit/ea0def13de476b2c616863793446a1644eac349c))
|
|
7
|
+
|
|
1
8
|
# [0.8.0](https://github.com/dargmuesli/dargstack_rgen/compare/0.7.16...0.8.0) (2022-12-27)
|
|
2
9
|
|
|
3
10
|
|
package/Dockerfile
CHANGED
|
@@ -7,7 +7,7 @@ VOLUME /srv/app
|
|
|
7
7
|
ENTRYPOINT ["node", "./src/generator.cjs"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS
|
|
10
|
+
FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e6d804ae577849fa AS build
|
|
11
11
|
|
|
12
12
|
WORKDIR /srv/app/
|
|
13
13
|
|
|
@@ -25,7 +25,7 @@ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e
|
|
|
25
25
|
|
|
26
26
|
WORKDIR /srv/app/
|
|
27
27
|
|
|
28
|
-
COPY --from=
|
|
28
|
+
COPY --from=build /srv/app/ ./
|
|
29
29
|
|
|
30
30
|
RUN npm install -g pnpm && \
|
|
31
31
|
pnpm run test
|
|
@@ -35,7 +35,7 @@ FROM node:19.3.0-alpine@sha256:3ed634e0f15d3e05a1918c3949963508f7ed56350cf94156e
|
|
|
35
35
|
|
|
36
36
|
WORKDIR /srv/app/
|
|
37
37
|
|
|
38
|
-
COPY --from=
|
|
38
|
+
COPY --from=build /srv/app/ /srv/app/
|
|
39
39
|
COPY --from=test /srv/app/package.json /tmp/package.json
|
|
40
40
|
|
|
41
41
|
|