Skip to content

Commit

Permalink
0.0.11
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <[email protected]>
  • Loading branch information
Julien Veyssier committed Feb 8, 2021
1 parent 6d52cac commit ebde9b5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
on:
push:
branches: [master]
branches: [release]

name: Publish release

jobs:
build:
name: Build, upload and release in the appstore
environment: release
env:
APP_ID: integration_gitlab
runs-on: ubuntu-latest
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:
php ~/html/nextcloud/occ maintenance:mode --off
cd ~/html/nextcloud/apps/${APP_ID}
echo "###### npm install"
npm install
npm ci
echo "###### npm run build"
npm run build
echo "###### make appstore"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## 0.0.11 – 2021-02-08
### Changed
- bump max NC version

### Fixed
- dialogs style import

## 0.0.10 – 2021-01-18
### Fixed
- Popover scroll issue
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<summary>Integration of GitLab software development management service</summary>
<description><![CDATA[GitLab integration provides a dashboard widget displaying your most important notifications
and a unified search provider for repositories, issues and merge requests.]]></description>
<version>0.0.10</version>
<version>0.0.11</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Gitlab</namespace>
Expand All @@ -21,7 +21,7 @@
<database min-version="9.4">pgsql</database>
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<nextcloud min-version="20" max-version="21"/>
<nextcloud min-version="20" max-version="22"/>
</dependencies>
<settings>
<admin>OCA\Gitlab\Settings\Admin</admin>
Expand Down
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ endif

.PHONY: npm
npm:
$(npm) install
$(npm) ci
$(npm) run build

.PHONY: npm-dev
npm-dev:
$(npm) install
$(npm) ci
$(npm) run dev

clean:
Expand Down

0 comments on commit ebde9b5

Please sign in to comment.