-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from cpanato/refactor-publish-release
refactor publish-release action to install only or run it with options
- Loading branch information
Showing
6 changed files
with
309 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# Copyright 2024 The Kubernetes Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: test-publish-release-action | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
changes: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: read | ||
outputs: | ||
pr: ${{ steps.filter.outputs.pr }} | ||
|
||
steps: | ||
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | ||
id: filter | ||
with: | ||
filters: | | ||
pr: | ||
- 'publish-release/**' | ||
- '.github/workflows/test-publish-release.yaml' | ||
test_publish_release_action: | ||
needs: changes | ||
if: ${{ needs.changes.outputs.pr == 'true' }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-latest | ||
- ubuntu-latest | ||
|
||
permissions: {} | ||
|
||
name: Install publish-release and test presence in path | ||
steps: | ||
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- name: Install publish-release | ||
uses: ./publish-release | ||
with: | ||
install-only: 'true' | ||
- name: Check install! | ||
run: publish-release help | ||
- name: Check root directory | ||
run: | | ||
if [[ $(git diff --stat) != '' ]]; then | ||
echo 'should be clean' | ||
exit 1 | ||
else | ||
exit 0 | ||
fi | ||
shell: bash | ||
|
||
test_publish_release_action_custom_dir_root: | ||
runs-on: ubuntu-latest | ||
needs: changes | ||
if: ${{ needs.changes.outputs.pr == 'true' }} | ||
permissions: {} | ||
name: Install Custom publish-release and test presence in path with custom root dir | ||
steps: | ||
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- name: Install publish-release | ||
uses: ./publish-release | ||
with: | ||
install-only: 'true' | ||
install-dir: /usr/bin | ||
use-sudo: true | ||
- name: Check install! | ||
run: publish-release help | ||
- name: Check install dir! | ||
run: | | ||
[[ $(dirname "$(which publish-release)") == /usr/bin ]] | ||
shell: bash | ||
- name: Check root directory | ||
run: | | ||
[[ -z $(git diff --stat) ]] | ||
shell: bash | ||
|
||
test_publish_release_action_custom_dir: | ||
runs-on: ${{ matrix.os }} | ||
needs: changes | ||
if: ${{ needs.changes.outputs.pr == 'true' }} | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-latest | ||
- ubuntu-latest | ||
permissions: {} | ||
name: Install Custom path publish-release and test presence in path | ||
steps: | ||
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- name: Install publish-release | ||
uses: ./publish-release | ||
with: | ||
install-only: 'true' | ||
install-dir: "$HOME/.prtest" | ||
- name: Check install! | ||
run: publish-release help | ||
- name: Check install dir! | ||
run: | | ||
[[ $(dirname "$(which publish-release)") == "$HOME/.prtest" ]] | ||
shell: bash | ||
- name: Check root directory | ||
run: | | ||
[[ -z $(git diff --stat) ]] | ||
shell: bash | ||
|
||
test_publish_release_action_wrong: | ||
runs-on: ${{ matrix.os }} | ||
needs: changes | ||
if: ${{ needs.changes.outputs.pr == 'true' }} | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-latest | ||
- ubuntu-latest | ||
permissions: {} | ||
name: Try to install a wrong publish-release | ||
steps: | ||
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | ||
- name: Install publish-release | ||
uses: ./publish-release | ||
with: | ||
install-only: 'true' | ||
publish-release-version: 'honk' | ||
continue-on-error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.