File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed
Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 44 steps :
55 - name : docker login
66 run : |
7- docker login -u "$DOCKERHUB_USERNAME" --password-stdin <<< "$DOCKERHUB_PASSWORD"
7+ docker login -u "$DOCKERHUB_USERNAME" --password-stdin <<< "$DOCKERHUB_PASSWORD" || echo "::warning::docker-login failed, ignoring"
88 shell : bash
Original file line number Diff line number Diff line change 1+ name : setup semantic-release with plugins
2+ runs :
3+ - uses : actions/setup_node@v5
4+ id : setup_node
5+ - uses : actions/cache@v4
6+ with :
7+ path : ~/.npm
8+ key : ${{ runner.os }}-npm-${{ steps.setup_node.node-version }}
9+ - shell : bash
10+ run : |
11+ - npm i -g
12+ semantic-release
13+ @semantic-release/exec
14+ @semantic-release/git
15+ @semantic-release/changelog
16+ @google/semantic-release-replace-plugin
Original file line number Diff line number Diff line change 4343 - name : Test
4444 run : tox
4545 smoketest :
46+ if : false
4647 runs-on : ubuntu-latest
4748 # needs: [ 'lint','test' ]
4849 steps :
6061 - run : ci/run_tests.sh
6162 env :
6263 SMOKETEST_DOCKER_IMAGE : python:${{ steps.setup.outputs.python-version }}
64+ release :
65+ # if: github.ref == 'refs/heads/master'
66+ # needs: ['smoketest','lint','test']
67+ runs-on : ubuntu-latest
68+ steps :
69+ - uses : actions/checkout@v5
70+ - uses : ./.github/actions/setup-semantic-release
71+ - run : semantic-release
You can’t perform that action at this time.
0 commit comments