File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ jobs:
1818 persist-credentials : false
1919
2020 - name : Mirror to GitLab
21- continue-on-error : true
2221 run : |
2322 git remote add gitlab "https://oauth2:${GITLAB_TOKEN}@${GITLAB_HOST}/${GITLAB_REPO}.git"
2423 # Avoid --mirror, which also pushes refs/remotes/* that GitLab rejects as hidden refs.
25- git push --prune gitlab 'refs/heads/*:refs/heads/*'
24+ # Push from refs/remotes/origin/* so all branches are present and --prune never deletes the default branch.
25+ git push --prune gitlab 'refs/remotes/origin/*:refs/heads/*'
2626 git push --prune gitlab 'refs/tags/*:refs/tags/*'
2727 env :
2828 GITLAB_TOKEN : ${{ secrets.GITLAB_MIRROR_TOKEN }}
Original file line number Diff line number Diff line change 1010 name = "docker-entrypoint" ;
1111 src = fetchurl {
1212 url = "https://raw.githubusercontent.com/docker-library/postgres/master/16/bookworm/docker-entrypoint.sh" ;
13- hash = "sha256-Gm/1aMecuEfP/EFysiofUBzvBQAbCwl1H0gyNoP7ZKI =" ;
13+ hash = "sha256-qjXPpnWmSsdoeQnIOph5jJ/3KrOFVyKg2WQ+SECLbBI =" ;
1414 } ;
1515 dontUnpack = true ;
1616 installPhase = ''
You can’t perform that action at this time.
0 commit comments