fix(ci, http): commit_sha and commit_date in docker builds

chore(ci): cache dependencies in Docker build
This commit is contained in:
Alexey Shekhirin 2021-03-30 20:03:13 +03:00
parent b0956c09c1
commit 3d51db5929
3 changed files with 23 additions and 3 deletions

View file

@ -11,10 +11,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set COMMIT_DATE env variable
run: |
echo "COMMIT_DATE=$( git log --pretty=format:'%ad' -n1 --date=short )" >> $GITHUB_ENV
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
env:
COMMIT_SHA: ${{ github.sha }}
with:
name: getmeili/meilisearch
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true
buildargs: COMMIT_SHA,COMMIT_DATE