Skip to content

Commit

Permalink
0.0.8
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
  • Loading branch information
Julien Veyssier committed Feb 12, 2021
1 parent 653c779 commit 0bf1c7a
Show file tree
Hide file tree
Showing 10 changed files with 14,177 additions and 1,755 deletions.
11 changes: 5 additions & 6 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_twitter
runs-on: ubuntu-latest
Expand Down Expand Up @@ -34,7 +35,7 @@ jobs:
echo "###### install dependencies"
export DEBIAN_FRONTEND=noninteractive
sudo apt update -y
sudo apt upgrade -y
# sudo apt upgrade -y
sudo apt install php-mbstring php-sqlite3 npm make openssl -y
echo "###### installing nextcloud"
mkdir ~/html
Expand All @@ -45,10 +46,8 @@ jobs:
php ~/html/nextcloud/occ app:enable ${APP_ID}
php ~/html/nextcloud/occ maintenance:mode --off
cd ~/html/nextcloud/apps/${APP_ID}
echo "###### npm ci"
npm ci
echo "###### npm run build"
npm run build
echo "###### build app"
make
echo "###### make appstore"
tag=${{ steps.tag.outputs.currenttag }}
version=${tag/v/}
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## 0.0.8 – 2021-02-12
### Changed
- bump js libs
- bump max nc version

### Fixed
- import nc dialogs style

## 0.0.7 – 2021-01-01
### Changed
- bump js libs
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Twitter integration</name>
<summary>Integration of Twitter microblogging and social networking service</summary>
<description><![CDATA[Twitter integration provides dashboard widgets displaying your important notifications and your home timeline.]]></description>
<version>0.0.7</version>
<version>0.0.8</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Twitter</namespace>
Expand All @@ -20,7 +20,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="21" max-version="22"/>
</dependencies>
<settings>
<admin>OCA\Twitter\Settings\Admin</admin>
Expand Down
5 changes: 3 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 Expand Up @@ -82,6 +82,7 @@ appstore: clean
--exclude=translationfiles \
--exclude=webpack.* \
--exclude=stylelint.config.js \
--exclude=.eslintrc.js \
--exclude=.github \
--exclude=.gitlab-ci.yml \
--exclude=crowdin.yml \
Expand Down
Loading

0 comments on commit 0bf1c7a

Please sign in to comment.