diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index e068069f892dc89760c84494f2d2623bd4406237..0dbde1e85f6f92ad897d9e98d9fa306c4d127e76 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -6,7 +6,7 @@ env: NODE_ENV: test jobs: - install_dep: + backend: if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ubuntu-latest strategy: diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..bdbaaec8eab1b2765bc7b8427518841597eaf93e --- /dev/null +++ b/.github/workflows/release-ci.yml @@ -0,0 +1,42 @@ +name: Release CI +on: + pull_request: + branches: + - master + +jobs: + check_version: + if: always() + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: | + MASTER_VERSION=$(git show origin/master:package.json | jq '.version') + THIS_VERSION=$(jq '.version' < package.json) + test "$MASTER_VERSION" == "$THIS_VERSION" && exit 1 || exit 0 + + check_release: + if: always() + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: | + VERSION_NUM=$(jq '.version' < package.json) + VERSION_NUM=${VERSION_NUM#\"} + VERSION_NUM=${VERSION_NUM%\"} + test -f docs/releases/v$VERSION_NUM.md && exit 0 || exit 1 + + release_linked_mkdocs: + if: always() + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: | + VERSION_NUM=$(jq '.version' < package.json) + VERSION_NUM=${VERSION_NUM#\"} + VERSION_NUM=${VERSION_NUM%\"} + echo "VERSION_NUM: $VERSION_NUM" + cat mkdocs.yml + GREP_VERSION_NUM=$(cat mkdocs.yml | grep $VERSION_NUM) + echo GREP_VERSION_NUM: $GREP_VERSION_NUM + test -z "$GREP_VERSION_NUM" && exit 1 || exit 0 \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000000000000000000000000000000000..e3766792780d1d42c25b17d98208b6193c286826 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,36 @@ +name: Release +on: + push: + branches: + - master + +jobs: + check-version: + outputs: + package-version: ${{ steps.set-version.outputs.package-version-from-json }} + runs-on: ubuntu-latest + steps: + + - name: Checkout + uses: actions/checkout@v1 + - name: Set version + id: set-version + run: | + PACKAGEJSON_VER=v$(cat package.json | jq -r '.version') + echo "::set-output name=package-version-from-json::$PACKAGEJSON_VER" + + create-release: + needs: check-version + if: success() + runs-on: ubuntu-latest + steps: + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ needs.check-version.outputs.package-version }} + release_name: Release ${{ needs.check-version.outputs.package-version }} + draft: false + prerelease: false diff --git a/docs/releases/v2.3.7.md b/docs/releases/v2.3.7.md new file mode 100644 index 0000000000000000000000000000000000000000..ad4b523b115c3ff80f37fe14df676e899cc13933 --- /dev/null +++ b/docs/releases/v2.3.7.md @@ -0,0 +1,5 @@ +# v2.3.7 + +## Under the hood stuff + +- Enable CI for release workflow. diff --git a/mkdocs.yml b/mkdocs.yml index 0cfbc0842b4fdc0b01a32e4f5a9cac4fc8cd8a20..da2897aeac570dd355375736e1e8cf9e7e54ebe6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -40,6 +40,7 @@ pages: - Fetching datasets: 'advanced/datasets.md' - Display non-atlas volumes: 'advanced/otherVolumes.md' - Release notes: + - v2.3.7: 'releases/v2.3.7.md' - v2.3.6: 'releases/v2.3.6.md' - v2.3.5: 'releases/v2.3.5.md' - v2.3.4: 'releases/v2.3.4.md' diff --git a/package.json b/package.json index 128ee791f7b86d518f1ad40394a5cf86ed77815c..bf3bd9de00ddb70a3a88ad51f4ec62e2559931a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "interactive-viewer", - "version": "2.3.3", + "version": "2.3.7", "description": "HBP interactive atlas viewer. Integrating KG query, dataset previews & more. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular.io", "scripts": { "dev-server-export": "webpack-dev-server --config webpack.export.js",