Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: continuous release setup #1346

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/dhis2-verify-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,21 +125,21 @@ jobs:
with:
token: ${{ secrets.DHIS2_BOT_GITHUB_TOKEN }}

- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 16
cache: 'yarn'

- uses: actions/download-artifact@v2
with:
name: app-build

# ensure that d2-app-scripts is available
- uses: c-hive/gha-yarn-cache@v1
- run: yarn install --frozen-lockfile

- uses: dhis2/action-semantic-release@master
with:
publish-apphub: false
publish-apphub: true
publish-github: true
github-token: ${{ secrets.DHIS2_BOT_GITHUB_TOKEN }}
apphub-token: ${{ secrets.DHIS2_BOT_APPHUB_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion d2.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const config = {
id: '1887e1f8-3b62-42a3-8383-975996e0870f',
type: 'app',
coreApp: true,
title: 'User management',
Expand All @@ -8,7 +9,7 @@ const config = {
entryPoints: {
app: './src/AppWrapper.js',
},
minDHIS2Version: '2.38',
minDHIS2Version: '2.41',
}

module.exports = config
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "user-app",
"version": "1.5.38",
"version": "99.9.9",
"description": "DHIS2 User app",
"license": "BSD-3-Clause",
"private": true,
Expand Down
Loading