diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-11-28 14:00:08 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-11-28 14:00:08 +0100 |
commit | 9afb137a537ff5d80445e5da0f111826060ea9ec (patch) | |
tree | 0e53153ac3ebd1c773aa12450a513f5c494ffa42 /.github | |
parent | add test/ with a basic CI script (diff) | |
download | wg-api-web-9afb137a537ff5d80445e5da0f111826060ea9ec.tar.gz wg-api-web-9afb137a537ff5d80445e5da0f111826060ea9ec.zip |
workflows/ci: rename the publish job
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f39c07f..de24cb1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,10 @@ jobs: - name: Test run: sudo ./test/test.sh - publish_docker: + publish: needs: [test] runs-on: ubuntu-latest - name: 'Publish / Docker Hub' + name: 'Publish' if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) steps: - name: Checkout |