Skip to content

Commit

Permalink
Update manual.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ttgzs authored Jun 14, 2024
1 parent 7ef2aff commit 51f8472
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,16 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: docker action
uses: docker/setup-buildx-action@v3.2.0

# Runs a single command using the runners shell
- name: Get docker greeting
run: docker pull php:7.3-fpm
- name: login tjjs
env:
TJJS_HOST: ${{ secrets.TJJS_HARBOR_HOST }}
Username: ${{secrets.TJJS_HARBOR_USERNAME}}
password: ${{secrets.TJJS_HARBOR_PWD}}
- name: login tjjs
uses: docker/login-action@v3.2.0
with:
registry: ${{TJJS_HOST}}
Username: ${{Username}}
password: ${{password}}
registry: ${{ secrets.TJJS_HARBOR_HOST }}
Username: ${{ secrets.TJJS_HARBOR_USERNAME }}
password: ${{ secrets.TJJS_HARBOR_PWD }}
logout: false
- name: tag docker image
run: docker tag php:7.3-fpm ${{ secrets.TJJS_HARBOR_HOST }}/libary/php:7.3-fpm
Expand Down

0 comments on commit 51f8472

Please sign in to comment.