Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/actions/release-major-action/Dockerfile

This file was deleted.

4 changes: 0 additions & 4 deletions .github/actions/release-major-action/action.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/actions/release-major-action/entrypoint.sh

This file was deleted.

3 changes: 0 additions & 3 deletions .github/actions/release-minor-action/Dockerfile

This file was deleted.

4 changes: 0 additions & 4 deletions .github/actions/release-minor-action/action.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/actions/release-minor-action/entrypoint.sh

This file was deleted.

3 changes: 0 additions & 3 deletions .github/actions/release-patch-action/Dockerfile

This file was deleted.

4 changes: 0 additions & 4 deletions .github/actions/release-patch-action/action.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/actions/release-patch-action/entrypoint.sh

This file was deleted.

16 changes: 5 additions & 11 deletions .github/workflows/release-major-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@ name: Release Major
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v1
- uses: cliffano/release-action@v2.0.0
with:
registry: ghcr.io
username: shinesolutions
password: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
- uses: ./.github/actions/release-major-action
- uses: ad-m/github-push-action@master
with:
tags: true
release_type: major
github_token: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
branch: ${{ github.ref }}
git_user_email: shinesworks@shinesolutions.com
git_user_name: Shine Works
16 changes: 5 additions & 11 deletions .github/workflows/release-minor-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@ name: Release Minor
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v1
- uses: cliffano/release-action@v2.0.0
with:
registry: ghcr.io
username: shinesolutions
password: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
- uses: ./.github/actions/release-minor-action
- uses: ad-m/github-push-action@master
with:
tags: true
release_type: minor
github_token: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
branch: ${{ github.ref }}
git_user_email: shinesworks@shinesolutions.com
git_user_name: Shine Works
16 changes: 5 additions & 11 deletions .github/workflows/release-patch-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,11 @@ name: Release Patch
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v1
- uses: cliffano/release-action@v2.0.0
with:
registry: ghcr.io
username: shinesolutions
password: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
- uses: ./.github/actions/release-patch-action
- uses: ad-m/github-push-action@master
with:
tags: true
release_type: patch
github_token: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
branch: ${{ github.ref }}
git_user_email: shinesworks@shinesolutions.com
git_user_name: Shine Works
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Changed
- Simplify GitHub Actions release workflows to not use custom action

### Fixed
- Fix release workflows to use SHINEOPENSOURCE_GITHUB_TOKEN instead of SHINEWORKS_GITHUB_TOKEN, matching this repo's original token

## 3.17.0 - 2024-07-29
### Added
- Add relaxed SSL setting to replication agent when destination is HTTPS #RS-194
Expand Down
Loading