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 4
4
steps :
5
5
- name : docker login
6
6
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"
8
8
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 43
43
- name : Test
44
44
run : tox
45
45
smoketest :
46
+ if : false
46
47
runs-on : ubuntu-latest
47
48
# needs: [ 'lint','test' ]
48
49
steps :
60
61
- run : ci/run_tests.sh
61
62
env :
62
63
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