We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 296cb27 + fe3033e commit a9be983Copy full SHA for a9be983
.github/workflows/stable.yml
@@ -20,8 +20,17 @@ jobs:
20
if: github.repository == 'rust-serverless/lambda-rust'
21
runs-on: ubuntu-latest
22
steps:
23
- - uses: actions/checkout@v2
24
- - run: make publish-tag
+ - name: Checkout the repo
+ uses: actions/checkout@v2
25
+ - name: Login to Docker hub
26
+ uses: docker/login-action@v1
27
+ with:
28
+ username: ${{ secrets.DOCKER_USERNAME }}
29
+ password: ${{ secrets.DOCKER_PASSWORD }}
30
+ - name: Publish
31
+ shell: bash
32
+ run: |
33
+ make publish-tag
34
env:
35
RUST_VERSION: stable
36
create_issue:
@@ -32,4 +41,3 @@ jobs:
41
- run: gh issue create --title "Stable publication failed" --body "Stable publication failed" --label "bug" -R $GITHUB_REPOSITORY
42
43
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
-
0 commit comments