We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90bd33d commit 36ac728Copy full SHA for 36ac728
.github/workflows/minos-broker-rabbitmq-publish.yml
@@ -0,0 +1,33 @@
1
+name: "Publish: minos-broker-rabbitmq"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*.*.x'
7
+ paths:
8
+ - 'packages/plugins/minos-broker-rabbitmq/**'
9
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ container: python:3.9-buster
14
+ defaults:
15
+ run:
16
+ working-directory: packages/plugins/minos-broker-rabbitmq
17
18
+ steps:
19
20
+ - name: Check out repository code
21
+ uses: actions/checkout@v2
22
23
+ - name: Install Poetry
24
+ uses: snok/install-poetry@v1
25
26
+ - name: Install dependencies
27
+ run: make install
28
29
+ - name: Publish package
30
+ run: make release
31
+ env:
32
+ POETRY_HTTP_BASIC_PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
33
+ POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
0 commit comments