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.
2 parents 7f49805 + ee63ae3 commit 8ef7039Copy full SHA for 8ef7039
.github/workflows/nightly.yml
@@ -22,8 +22,17 @@ jobs:
22
if: github.repository == 'rust-serverless/lambda-rust'
23
runs-on: ubuntu-latest
24
steps:
25
- - uses: actions/checkout@v2
26
- - run: make publish
+ - name: Checkout the repo
+ uses: actions/checkout@v2
27
+ - name: Login to Docker Hub
28
+ uses: docker/login-action@v1
29
+ with:
30
+ username: ${{ secrets.DOCKER_USERNAME }}
31
+ password: ${{ secrets.DOCKER_PASSWORD }}
32
+ - name: Publish
33
+ shell: bash
34
+ run: |
35
+ make publish-tag
36
env:
37
RUST_VERSION: nightly
38
TAG: nightly
@@ -35,4 +44,3 @@ jobs:
44
- run: gh issue create --title "Nightly publication failed" --body "Nightly publication failed" --label "bug" -R $GITHUB_REPOSITORY
45
46
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
-
0 commit comments