diff --git a/README.md b/README.md index d64648f..4b23b41 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v1 with: ref: master # you can use this to get a non-detached head but it's not strictly required - - uses: ilkka/git-https-push-action@master + - uses: utrustdev/git-https-push-action@master name: Deploy with: remoteUrl: ${{ secrets.PUSH_REMOTE }} diff --git a/entrypoint.sh b/entrypoint.sh index 390fe20..82118cb 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -20,4 +20,4 @@ fi git config --global --add safe.directory /github/workspace git remote add $REMOTE $REMOTE_URL -git push $(join_by " " $EXTRA_ARGS) $REMOTE HEAD:master +git push --force $(join_by " " $EXTRA_ARGS) $REMOTE HEAD:master