Skip to content

Releases: rojopolis/spellcheck-github-actions

0.27.0

09 Sep 06:19
Compare
Choose a tag to compare

0.27.0, 2022-09-09, feature release, update not required

0.26.0

04 Aug 18:20
Compare
Choose a tag to compare

0.26.0, 2022-08-04, maintenance release, update recommended

0.25.0

08 Jul 07:21
Compare
Choose a tag to compare

0.25.0, 2022-07-08, maintenance release, update recommended

0.24.0

17 May 15:13
Compare
Choose a tag to compare

0.24.0, 2022-05-17, feature release, update not required

  • @riccardoporreca created issue #68 requested the ability to create an output artifact.

    With release 0.24.0 this is now available.

    The action configuration has to have the output_file parameter specified, which is a new optional parameter.

    name: Spellcheck Action
    
    on:
      workflow_dispatch:
      push:
    
    jobs:
      build:
        name: Spellcheck
        runs-on: ubuntu-latest
        steps:
    
        - uses: actions/checkout@v3
    
        - uses: rojopolis/spellcheck-github-actions@0.24.0
          name: Spellcheck (no output file)
          with:
            source_files: README.md CHANGELOG.md
    
        - uses: rojopolis/spellcheck-github-actions@0.24.0
          name: Spellcheck (with output file)
          with:
            source_files: README.md CHANGELOG.md
            task_name: Markdown
            output_file: spellcheck-output.txt
    
        - uses: actions/upload-artifact@v3
          name: Archive spellcheck output output
          with:
            name: Spellcheck artifact
            path: spellcheck-output.txt

This introduces the use of the upload-artifact@v3 action.

The generated artifact can be downloaded via GitHub UI/API, please consult the documentation for details and pointers.

Thanks to @riccardoporreca for his suggestion and additional review and comments on PR by @jonasbn

The release will be available for 365 days, with the new sunset policy

0.23.2

05 May 18:33
Compare
Choose a tag to compare

0.23.2, 2022-05-05, bug fix release, update not required

  • Minor issue in release 0.23.1, the action was not adjusted to the latest release

0.23.1

05 May 17:55
Compare
Choose a tag to compare

0.23.1, 2022-05-05, bug fix release, update not required

  • Addressing issue #84 via PR #90 from @jonasbn. With the introduction of use of optional quotes, do note the limitations outlined in the documentation - thanks to @xsaero00 for the bug report

0.23.0

09 Apr 20:01
Compare
Choose a tag to compare

0.23.0, 2022-04-09, feature release, update not required

0.22.1

23 Feb 21:19
Compare
Choose a tag to compare

0.22.1, 2022-02-23, bug fix release, update recommended

  • Testing the new Spanish support feature more thoroughly, demonstrated that the Docker build process was broken and only English worked

    • I addressed issue #57, which demonstrated an issue with the Docker build, the issue is no longer relevant with the simplification of the Docker build via PR: #82 by me (@jonasbn)

0.22.0

21 Feb 17:01
435a51c
Compare
Choose a tag to compare

0.22.0, 2022-02-21, feature release, update not required

  • Support for the Spanish language. Support requested and implemented by @electrocucaracha via PR #81

This release should have been pushed a day

0.21.1

25 Jan 06:53
Compare
Choose a tag to compare

0.21.1, 2022-01-25, bug fix release, update required

  • Release 0.21.0 was build and uploaded from the wrong architecture. This release addressed this issue (#79). Thanks @chrispat for the issue report