Skip to content

Releases: philips-software/post-to-medium-action

Release v0.6.0 - Breaking if used standalone (no GH Action)

13 Apr 17:56
5870a38
Compare
Choose a tag to compare

This version includes a breaking change if you use the standalone DLL instead of the GitHub Action.
The default settings for PublishStatus and License have been removed.

What's Changed

Full Changelog: v0.5.0...v0.6.0

Release v0.5.0

06 Apr 08:15
8056bfd
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.4.2...v0.5.0

Release v0.4.2

12 Jul 10:09
v0.4.2
9c91512
Compare
Choose a tag to compare
Pre-release

What's Changed

  • Clean up codebase and apply a major refactor.
  • Add new tests (closes #3)
  • Add Codescene
  • Add SonarQube

Full Changelog: v0.4.1...v0.4.2

Release v0.4.1

04 Jan 16:56
v0.4.1
6c1ea77
Compare
Choose a tag to compare
  • Fix bug that caused problem when trying to post as author. (#17)

    When publishing as an author and not as a publication, it would error because the value of the publication id or name is set as an empty string, and thus is not null.
    Add test to verify author functionality.

Release v0.4.0

04 Jan 13:10
v0.4.0
cd71669
Compare
Choose a tag to compare

This new release adds support for the following:

  • Support both Pascal and Underscored Naming Conventions

  • Allow posting without publication name or Id

    This feature allows you to post under a specific user, instead of under a specific publication.

    This resolves issue #16

No breaking changes were introduced. Enjoy 🚀

Fix issue where tags are not added

26 Nov 13:21
v0.3.4
16ab288
Compare
Choose a tag to compare

Add Auto Release

26 Nov 11:11
v0.3.3
04d07b3
Compare
Choose a tag to compare

This is mostly a release to test release automation.
Nothing interesting here.

Fix issue resulting in error about missing configuration with some setups

26 Nov 08:48
v0.3.1
cbab270
Compare
Choose a tag to compare

In some cases, when using Frontmatter, the action would error and tell you did not configure the correct settings.
This was an issue with the order of validation checking for the settings. This release fixes this.

Full Changelog: v0.3...v0.3.1

Release v0.3

02 Nov 16:06
v0.3
db15da5
Compare
Choose a tag to compare

This release adds the ability to parse frontmatter from Markdown files. The markdown file can include frontmatter as follows:

---
Title: "Title of the post"
Tags: ['interesting', 'tags', 'here']
PublishStatus: "draft"
NotifyFollowers: true
License: "all-rights-reserved"
---

This frontmatter will override previously defined settings. Frontmatter will not be published on Medium. Available types in the frontmatter are Title, Tags, PublishStatus, NotifyFollowers, License, CanonicalUrl, and ContentFormat.

Full Changelog: https://github.com/philips-software/post-to-medium-action/commits/v0.3

Initial release v0.2

29 Oct 10:08
v0.2
e5fbdb2
Compare
Choose a tag to compare

Action is still experimental but should be usable.
Please report issues on the issue tracker.

Use the Action like shown below:

jobs:
  execute-action:
    name: Use internal GH Action
    runs-on: ubuntu-latest
    steps:
      - name: Create Medium Post
        uses: philips-software/post-to-medium-action@v0.2
        with:
           integration_token: "${{ secrets.INTEGRATION_TOKEN }}"
           content: "Content"
           content_format: "markdown"
           notify_followers: "false"
           publication_name: "publication"
           tags: "test,tag"
           title: "Title"