支持默认用户名和密码 (#22) #75
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: run push images | |
on: | |
pull_request: | |
branches: [ master ] | |
env: | |
REGISTRY: harbor.cloud.pixiuio.com | |
REPOSITORY: pixiuio | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: publish kubernetes or custom images | |
run: chmod +x ./app && ./app -v 2 --harbor ${{ env.REGISTRY }} --image-repository ${{ env.REPOSITORY }} --user ${{ secrets.HARBOR_NAME }} --password ${{ secrets.HARBOR_PASSWORD }} |