Update README.md #22
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: Docker Hub Login | |
run: docker login -u nozich --password ${{secrets.DOCKER_ACCESS_TOKEN}} | |
- name: Build the Docker image | |
run: pwd && ls -lash && whoami && echo "node version $(node -v)" && echo "npm version $(npm -v)" && npm i -g zx@latest && echo "zx version $(zx -v)" && zx ./push.mjs |