Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
chore: add GH workflow to publish manually from branches (#2316)
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Publish from branch | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-from-branch: | ||
name: Publish from branch | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build and publish all images to Dockerhub | ||
run: | | ||
echo ${{ secrets.DOCKER_HUB_TOKEN }} | docker login -u ${{ secrets.DOCKER_USER }} --password-stdin | ||
make docker-publish | ||
send-chat-notification: | ||
name: Send google chat notification | ||
needs: [publish-from-branch] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Send notification to google chat room "DSP releases" | ||
uses: lakto/google-chat-action@main | ||
with: | ||
url: ${{ secrets.GOOGLE_CHAT_DSP_RELEASES_WEBHOOK_URL }} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ name: Publish | |
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
create-client-test-data: | ||
|