dockerimage.yml 256 B

1234567891011121314151617
  1. name: Docker Image CI
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. build:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v1
  11. - name: Build the Docker image
  12. run: docker build . --file Dockerfile --tag wekan:$(date +%s)