Skip to content

Releases: guardian/actions-riff-raff

v3.3.1

18 Dec 10:11
430dd6f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.3.0...v3.3.1

v3.3.0

06 Dec 19:53
c01ad2c
Compare
Choose a tag to compare

What's Changed

  • chore(deps): bump @aws-sdk/client-s3 from 3.441.0 to 3.462.0 by @dependabot in #92
  • chore(deps): bump esbuild from 0.19.5 to 0.19.8 by @dependabot in #91
  • chore(deps-dev): bump @types/node from 20.8.10 to 20.10.1 by @dependabot in #90
  • chore(deps-dev): bump @types/js-yaml from 4.0.8 to 4.0.9 by @dependabot in #89
  • feat: Add a link to understand what's currently deployed by @akash1810 in #93

Full Changelog: v3.2.0...v3.3.0

v3.2.0

26 Nov 00:01
3390967
Compare
Choose a tag to compare

What's Changed

  • feat: Support repositories with multiple Riff-Raff projects by @akash1810 in #88

Full Changelog: v3.1.1...v3.2.0

v3.1.1

23 Nov 12:44
f5c7b37
Compare
Choose a tag to compare

What's Changed

  • Provide more context to GitHub topic failure by @akash1810 in #87

Full Changelog: v3.1.0...v3.1.1

3.1.0 (21-11-2023)

21 Nov 16:28
15286f8
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.1.0

v3.0.0

20 Nov 16:10
bbfa351
Compare
Choose a tag to compare

3.0.0 (2023-11-20)

  • Add a pull request comment with quick links to deploy with Riff-Raff (#85)
image

BREAKING CHANGES

A new required input githubToken has been added. This needs to be scoped with pull-requests: write permission.

Before (v2)

jobs:
  CI:
    timeout-minutes: 15
    runs-on: ubuntu-latest
    steps:
      - uses: guardian/actions-riff-raff@v2
        with:
          projectName: playground::my-application
          configPath: riff-raff.yaml
          contentDirectories: |
            static-site-assets:
              - static-site/dist
            api:
              - target/application.jar

After (v3)

jobs:
  CI:
    timeout-minutes: 15
    runs-on: ubuntu-latest
    permissions: 
      pull-requests: write # <- NEW!
    steps:
      - uses: guardian/actions-riff-raff@v3 # Note the version change
        with:
          githubToken: ${{ secrets.GITHUB_TOKEN }} # <- NEW!
          projectName: playground::my-application
          configPath: riff-raff.yaml
          contentDirectories: |
            static-site-assets:
              - static-site/dist
            api:
              - target/application.jar

Note that GITHUB_TOKEN is provided by GitHub. See https://docs.github.com/en/actions/security-guides/automatic-token-authentication.

v2.2.4

16 Oct 14:31
1b0dec2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2...v2.2.4

v2.2.3

02 Oct 10:34
abd06f2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.2.2...v2.2.3

v2.2.2

26 Jul 15:44
e9a6c4f
Compare
Choose a tag to compare

Includes #61 to fix things when the calling repo does not have an .nvmrc file.

Deprecated - v2.2.1

26 Jul 14:18
9e85c59
Compare
Choose a tag to compare

Warning
Please do not use this release. It broke for projects without an .nvmrc.
Use v2.2.2 onwards instead

Runs the action using Node 18 to fix an issue with uploading files to S3 in @aws-sdk/client-s3.

See #60 and #33 for more information.