Skip to content

Commit 70c8ad3

Browse files
committed
Simplify GitHub Actions release workflows to not use custom action
1 parent c5bc3a0 commit 70c8ad3

13 files changed

Lines changed: 21 additions & 69 deletions

File tree

.github/actions/release-major-action/Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/actions/release-major-action/action.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/actions/release-major-action/entrypoint.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/actions/release-minor-action/Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/actions/release-minor-action/action.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/actions/release-minor-action/entrypoint.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/actions/release-patch-action/Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/actions/release-patch-action/action.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/actions/release-patch-action/entrypoint.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/workflows/release-major-workflow.yaml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@ name: Release Major
33
on: [workflow_dispatch]
44
jobs:
55
build:
6-
runs-on: ubuntu-latest
6+
runs-on: ubuntu-24.04
77
steps:
8-
- uses: actions/checkout@v1
9-
- uses: docker/login-action@v1
8+
- uses: cliffano/release-action@v2.0.0
109
with:
11-
registry: ghcr.io
12-
username: shinesolutions
13-
password: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
14-
- uses: ./.github/actions/release-major-action
15-
- uses: ad-m/github-push-action@master
16-
with:
17-
tags: true
18-
github_token: ${{ secrets.SHINEOPENSOURCE_GITHUB_TOKEN }}
19-
branch: ${{ github.ref }}
10+
release_type: major
11+
github_token: ${{ secrets.SHINEWORKS_GITHUB_TOKEN }}
12+
git_user_email: shinesworks@shinesolutions.com
13+
git_user_name: Shine Works

0 commit comments

Comments
 (0)