Upgraded from v1.2.3 -> v1.2.4 (#46) #213
This file contains hidden or 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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test setup-bin | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
- name: Run setup-bin go package | |
id: setup-bin-go | |
uses: ./ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository-owner: tj-actions | |
repository: auto-doc | |
language-type: go | |
- name: Show output | |
run: | | |
echo "setup-bin-go: ${{ steps.setup-bin-go.outputs.binary_path }}" | |
- name: Run setup-bin rust package | |
id: setup-bin-rust | |
uses: ./ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository-owner: tj-actions | |
repository: json2file | |
language-type: rust | |
- name: Show output | |
run: | | |
echo "setup-bin-rust: ${{ steps.setup-bin-rust.outputs.binary_path }}" | |
- name: Run git-cliff rust package | |
id: setup-bin-rust-2 | |
uses: ./ | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository-owner: orhun | |
repository: git-cliff | |
language-type: rust | |
add-prefix-to-version: false | |
- name: Show output | |
run: | | |
echo "setup-bin-rust-2: ${{ steps.setup-bin-rust-2.outputs.binary_path }}" |