on: [push] jobs: test: runs-on: docker steps: - run: echo All Good - run: apt update && apt install docker.io -y - name: Check out repository code uses: actions/checkout@v3 - run: pwd ; echo ""; ls - run: chmod -R 777 /var/run/docker* - run: docker build -t git.martyn.berlin/martyn/fat-ssh:latest . - run: docker login -P ${{ secrets.PUSH_TOKEN }} -u martyn git.martyn.berlin - run: docker push git.martyn.berlin/martyn/fat-ssh:latest