ci: add new CI job for testing05 with GitHub Container Registry login

- Add a new job called `testing05` to the CI workflow
- Define steps for the `testing05` job, including a login to GitHub Container Registry
- Include a script in the `testing05` job to execute specific commands

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2024-01-06 10:30:32 +08:00
parent 2451745138
commit 5b00e6d1bd
No known key found for this signature in database

View File

@ -261,3 +261,22 @@ jobs:
script_stop: true
script: |
echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
testing05:
name: switch user
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v1
- name: login GitHub Container Registry
uses: ./
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script_stop: true
script: |
whoami && echo 'hello world' && touch todo.txt
sudo su - -c "whoami && echo 'hello world' && touch todo.txt"