@codfish/actions-playground 6.4.0-beta.6 → 6.4.0-beta.8

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.
@@ -91,13 +91,13 @@ jobs:
91
91
  },
92
92
  {
93
93
  'files': ['app.config.ts'],
94
- 'from': 'version',
95
- 'to': 'version ${nextRelease.version}'
94
+ 'from': "version: '.*'",
95
+ 'to': "version: '${nextRelease.version.split('-')[0]}'"
96
96
  }
97
97
  ]
98
98
  }
99
99
  ],
100
- [ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml']} ],
100
+ [ '@semantic-release/git', {'assets': ['Dockerfile', 'provisioning/Chart.yml', 'app.config.ts']} ],
101
101
  [
102
102
  "@semantic-release/release-notes-generator",
103
103
  {
package/Dockerfile CHANGED
@@ -10,7 +10,7 @@ RUN npm ci
10
10
  COPY ./src ./src
11
11
  COPY ./public ./public
12
12
 
13
- ENV RELEASE_VERSION=6.4.0-beta.6
13
+ ENV RELEASE_VERSION=6.4.0-beta.8
14
14
 
15
15
  RUN npm run build
16
16
 
package/app.config.ts CHANGED
@@ -28,7 +28,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
28
28
  ...config,
29
29
  name: `Foo Mobile${getAppNameSuffix()}`,
30
30
  slug: 'foomobile',
31
- version 6.4.0-beta.6: '2.0.0',
31
+ version: '6.4.0',
32
32
  orientation: 'portrait',
33
33
  icon: getAppLogo(),
34
34
  scheme: 'foomobile',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codfish/actions-playground",
3
- "version": "6.4.0-beta.6",
3
+ "version": "6.4.0-beta.8",
4
4
  "description": "My own testing ground for messing around with GitHub Actions.",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -1,3 +1,3 @@
1
- appVersion: 6.4.0-beta.6
1
+ appVersion: 6.4.0-beta.8
2
2
  name: actions-playground
3
- version: 6.4.0-beta.6
3
+ version: 6.4.0-beta.8