mirror of
https://github.com/fosrl/newt.git
synced 2026-04-14 22:06:37 +00:00
Compare commits
2 Commits
dependabot
...
fix-nix
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d133d69cb9 | ||
|
|
50be4f617e |
14
.github/workflows/cicd.yml
vendored
14
.github/workflows/cicd.yml
vendored
@@ -110,6 +110,15 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: Update version in flake.nix
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
VERSION: ${{ inputs.version }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
sed -i "s/version = \"[0-9]*\.[0-9]*\.[0-9]*\(-rc\.[0-9]*\)\?\"/version = \"$VERSION\"/" flake.nix
|
||||||
|
echo "Updated flake.nix version to $VERSION"
|
||||||
|
|
||||||
- name: Create and push tag
|
- name: Create and push tag
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
@@ -127,6 +136,11 @@ jobs:
|
|||||||
echo "Tag $VERSION already exists" >&2
|
echo "Tag $VERSION already exists" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
if ! git diff --quiet flake.nix; then
|
||||||
|
git add flake.nix
|
||||||
|
git commit -m "chore(nix): update version to $VERSION"
|
||||||
|
git push origin "$TARGET_BRANCH"
|
||||||
|
fi
|
||||||
git tag -a "$VERSION" -m "Release $VERSION"
|
git tag -a "$VERSION" -m "Release $VERSION"
|
||||||
git push origin "refs/tags/$VERSION"
|
git push origin "refs/tags/$VERSION"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# FROM golang:1.25-alpine AS builder
|
# FROM golang:1.25-alpine AS builder
|
||||||
FROM public.ecr.aws/docker/library/golang:1.26-alpine AS builder
|
FROM public.ecr.aws/docker/library/golang:1.25-alpine AS builder
|
||||||
|
|
||||||
# Install git and ca-certificates
|
# Install git and ca-certificates
|
||||||
RUN apk --no-cache add ca-certificates git tzdata
|
RUN apk --no-cache add ca-certificates git tzdata
|
||||||
|
|||||||
Reference in New Issue
Block a user