Browse Source

release docs as an archive (#12243)

* release docs along sources

* use a custom offline version

Co-authored-by: Gitea <gitea@fake.local>
tags/v1.13.0-rc1
Antoine GIRARD 3 years ago
parent
commit
b92a5d8d64
No account linked to committer's email address
2 changed files with 16 additions and 1 deletions
  1. 12
    1
      Makefile
  2. 4
    0
      docs/Makefile

+ 12
- 1
Makefile View File

@@ -524,7 +524,7 @@ $(EXECUTABLE): $(GO_SOURCES) $(TAGS_PREREQ)
CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) build -mod=vendor $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@

.PHONY: release
release: frontend generate release-windows release-linux release-darwin release-copy release-compress release-sources release-check
release: frontend generate release-windows release-linux release-darwin release-copy release-compress release-sources release-docs release-check

$(DIST_DIRS):
mkdir -p $(DIST_DIRS)
@@ -580,6 +580,17 @@ release-sources: | $(DIST_DIRS) node_modules
tar --exclude=./$(DIST) --exclude=./.git --exclude=./$(MAKE_EVIDENCE_DIR) --exclude=./node_modules/.cache -czf $(DIST)/release/gitea-src-$(VERSION).tar.gz .
rm -f $(STORED_VERSION_FILE)

.PHONY: release-docs
release-docs: | $(DIST_DIRS) docs
tar -czf $(DIST)/release/gitea-docs-$(VERSION).tar.gz -C ./docs/public .

.PHONY: docs
docs:
@hash hugo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
GO111MODULE=off $(GO) get -u github.com/gohugoio/hugo; \
fi
cd docs; make trans-copy clean build-offline;

node_modules: package-lock.json
npm install --no-save
@touch node_modules

+ 4
- 0
docs/Makefile View File

@@ -21,6 +21,10 @@ server: $(THEME)
build: $(THEME)
hugo --cleanDestinationDir

.PHONY: build-offline
build-offline: $(THEME)
hugo --baseURL="/" --cleanDestinationDir

.PHONY: update
update: $(THEME)


Loading…
Cancel
Save