Update github.com/aws/aws-sdk-go-v2 #1444
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
name: script test / linux | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install uaws-ecr-get-login-password | |
run: ./install.sh ecr-get-login-password | |
- name: Check installed command | |
run: | | |
export PATH=${PATH}:${HOME}/.local/bin | |
which uaws-ecr-get-login-password | |
test -L $(which uaws-ecr-get-login-password) | |
test -x $(realpath $(which uaws-ecr-get-login-password)) | |
uaws-install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install ecr-get-login-password subcommand | |
run: ./uaws install ecr-get-login-password | |
- name: Check installed command | |
run: | | |
export PATH=${PATH}:${HOME}/.local/bin | |
which uaws-ecr-get-login-password | |
test -L $(which uaws-ecr-get-login-password) | |
test -x $(realpath $(which uaws-ecr-get-login-password)) | |
- name: Check upgrade | |
run: ./uaws upgrade | |
uaws-install-with-token: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Show download URLs | |
run: ./uaws get_download_urls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install ecr-get-login-password subcommand | |
run: ./uaws install ecr-get-login-password | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check installed command | |
run: | | |
export PATH=${PATH}:${HOME}/.local/bin | |
which uaws-ecr-get-login-password | |
test -L $(which uaws-ecr-get-login-password) | |
test -x $(realpath $(which uaws-ecr-get-login-password)) | |
- name: Check upgrade | |
run: ./uaws upgrade | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |