Skip to content

Commit

Permalink
fix release process
Browse files Browse the repository at this point in the history
  • Loading branch information
R. S. Doiel committed Oct 30, 2024
1 parent 9318f5d commit 27681a2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ clean:
if [ -d dist ]; then rm -fR dist/*; fi

release: clean build man website distribute_docs dist/Linux-x86_64 dist/Linux-aarch64 dist/macOS-x86_64 dist/macOS-arm64 dist/Windows-x86_64
./release.bash
echo "Ready to do ./release.bash"

setup_dist: .FORCE
@rm -fR dist
Expand All @@ -161,31 +161,31 @@ distribute_docs: website man setup_dist
dist/Linux-x86_64: .FORCE
@mkdir -p dist/bin
deno task release_linux_x86_64
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Linux-x86_64.zip LICENSE codemeta.json CITATION.cff *.md $(DIST_FOLDERS)
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Linux-x86_64.zip LICENSE codemeta.json CITATION.cff *.md bin/*
@rm -fR dist/bin

dist/Linux-aarch64: .FORCE
@mkdir -p dist/bin
deno task release_linux_aarch64
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Linux-aarch64.zip LICENSE codemeta.json CITATION.cff *.md $(DIST_FOLDERS)
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Linux-aarch64.zip LICENSE codemeta.json CITATION.cff *.md bin/*
@rm -fR dist/bin

dist/macOS-x86_64: .FORCE
@mkdir -p dist/bin
deno task release_macos_x86_64
@cd dist && zip -r $(PROJECT)-v$(VERSION)-macOS-x86_64.zip LICENSE codemeta.json CITATION.cff *.md $(DIST_FOLDERS)
@cd dist && zip -r $(PROJECT)-v$(VERSION)-macOS-x86_64.zip LICENSE codemeta.json CITATION.cff *.md bin/*
@rm -fR dist/bin

dist/macOS-arm64: .FORCE
@mkdir -p dist/bin
deno task release_macos_aarch64
@cd dist && zip -r $(PROJECT)-v$(VERSION)-macOS-arm64.zip LICENSE codemeta.json CITATION.cff *.md $(DIST_FOLDERS)
@cd dist && zip -r $(PROJECT)-v$(VERSION)-macOS-arm64.zip LICENSE codemeta.json CITATION.cff *.md bin/*
@rm -fR dist/bin

dist/Windows-x86_64: .FORCE
@mkdir -p dist/bin
@for FNAME in $(PROGRAMS); do deno compile --allow-import --allow-read --allow-net --output "dist/bin/$${FNAME}.exe" --target x86_64-pc-windows-msvc cold_admin.ts "$${FNAME}.ts"; done
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Windows-x86_64.zip LICENSE codemeta.json CITATION.cff *.md $(DIST_FOLDERS)
@cd dist && zip -r $(PROJECT)-v$(VERSION)-Windows-x86_64.zip LICENSE codemeta.json CITATION.cff *.md bin/*
@rm -fR dist/bin


Expand Down
4 changes: 2 additions & 2 deletions cold_admin.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%cold(1) user manual | 0.0.11 2024-10-30 e1ed18d
%cold(1) user manual | 0.0.11 2024-10-30 9318f5d
% R. S.Doiel
% 2024-10-30 e1ed18d
% 2024-10-30 9318f5d

# NAME

Expand Down
4 changes: 2 additions & 2 deletions cold_reports.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%cold_reports(1) user manual | 0.0.11 2024-10-30 e1ed18d
%cold_reports(1) user manual | 0.0.11 2024-10-30 9318f5d
% R. S.Doiel
% 2024-10-30 e1ed18d
% 2024-10-30 9318f5d

# NAME

Expand Down
4 changes: 2 additions & 2 deletions directory_sync.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%directory_sync(1) user manual | 0.0.11 2024-10-30 e1ed18d
%directory_sync(1) user manual | 0.0.11 2024-10-30 9318f5d
% R. S.Doiel
% 2024-10-30 e1ed18d
% 2024-10-30 9318f5d

# NAME

Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const appInfo: {[k: string]: string} = {
releaseDate: "2024-10-30",

// ReleaseHash, the Git hash when version.go was generated
releaseHash: "e1ed18d",
releaseHash: "9318f5d",

// licenseText holds a copy of the application license text.
licenseText: `
Expand Down

0 comments on commit 27681a2

Please sign in to comment.