diff --git a/README.md b/README.md index 4f856ad..647fe9d 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ jobs: with: args: "https://gitlab.com//" env: + FOLLOW_TAGS: "false" FORCE_PUSH: "false" GITLAB_HOSTNAME: "gitlab.com" GITLAB_USERNAME: "svboxel" @@ -37,3 +38,5 @@ The token must have `read_api`, `read_repository` & `write_repository` permissio For granular permissions create seperate users and tokens in GitLab with restricted access. If you're rewriting history in the primary repo (e.g by using `git rebase`), you'll need to force push. Set the `FORCE_PUSH` environment variable to `true` to enable this. This will overwrite history in the mirror as well, so be **careful with this** (just like any time you're using `git push --force`). + +If you want to mirror repository tags too, you can define `FOLLOW_TAGS` environment variable to `true`. diff --git a/entrypoint.sh b/entrypoint.sh index 9bfb22a..79b95ce 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -38,6 +38,12 @@ else sh -c "git push mirror $branch" fi +if [ "${FOLLOW_TAGS:-}" = "true" ] +then + sh -c "echo pushing with --tags" + sh -c "git push --tags mirror $branch" +fi + sleep $POLL_TIMEOUT pipeline_id=$(curl --header "PRIVATE-TOKEN: $GITLAB_PASSWORD" --silent "https://${GITLAB_HOSTNAME}/api/v4/projects/${GITLAB_PROJECT_ID}/repository/commits/${branch_uri}" | jq '.last_pipeline.id')