Skip to content

Commit

Permalink
✨ Preparing for new release system
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Feb 8, 2021
1 parent ffae4fc commit e257f35
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Release
on:
push:
branches: [ master ]
tags: [ 'v*' ] # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
publish:
Expand All @@ -23,11 +24,16 @@ jobs:
run: chmod +x gradlew
- name: Build code
run: ./gradlew assemble
- name: Publish release to jCenter
run: ./gradlew bintrayUpload
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Build and deploy Orchid documentation
run: ./gradlew :plume:orchidDeploy -PorchidEnvironment=prod
env:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

### Changed

### Fixed

## [0.1.4] - 2021-02-08

### Added
- `TypeDecl` are now properly generated for external types

### Changed
- Replaced Plume enums with `codepropertygraph` constants

### Fixed
- `CALL` edges not created if no `static void main` present

## [0.1.3] - 2021-02-02

Expand Down

0 comments on commit e257f35

Please sign in to comment.