Update docker-image.yml #9
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
name: Docker Image CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create timestamp | |
id: timestamp | |
run: echo "::set-output name=time::$(date +%s)" | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag karensky/memory_core:${{ github.sha }} | |
- name: Log in to Docker Hub | |
run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push image to Docker Hub | |
run: docker push karensky/memory_core:${{ github.sha }} |