mirror of
https://githubfast.com/appleboy/ssh-action
synced 2024-10-31 15:46:30 +00:00
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:
parent
2451745138
commit
5b00e6d1bd
19
.github/workflows/ci.yml
vendored
19
.github/workflows/ci.yml
vendored
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user