Skip to content

Commit d214dd6

Browse files
authored
Merge pull request #1905 from l3montree-dev/applicative-systems-nix
testing applicative systems nix image
2 parents 0a48e6e + 59417d3 commit d214dd6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/mirror-to-gitlab.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

nix/postgresql.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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 = ''

0 commit comments

Comments
 (0)