Skip to content
Merged
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
7 changes: 5 additions & 2 deletions get-latest-semver-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,15 @@ outputs:
runs:
using: 'composite'
steps:
- name: Get latest semver tag
- name: Build and run get-latest-semver-tag
shell: bash
run: ${{ github.action_path }}/get-latest-semver-tag
env:
INPUT_PREFIX: ${{ inputs.prefix }}
INPUT_DEFAULT_VERSION: ${{ inputs.default-version }}
run: |
cd ${{ github.action_path }}
go build -o get-latest-semver-tag main.go
./get-latest-semver-tag

branding:
icon: 'tag'
Expand Down
7 changes: 5 additions & 2 deletions get-next-semver/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,17 @@ outputs:
runs:
using: 'composite'
steps:
- name: Get next semver
- name: Build and run get-next-semver
shell: bash
run: ${{ github.action_path }}/get-next-semver
env:
INPUT_CURRENT_VERSION: ${{ inputs.current-version }}
INPUT_INCREMENT_MAJOR: ${{ inputs.increment-major }}
INPUT_INCREMENT_MINOR: ${{ inputs.increment-minor }}
INPUT_PREFIX: ${{ inputs.prefix }}
run: |
cd ${{ github.action_path }}
go build -o get-next-semver main.go
./get-next-semver

branding:
icon: 'arrow-up'
Expand Down
Loading