pax_global_header 0000666 0000000 0000000 00000000064 14570377506 0014530 g ustar 00root root 0000000 0000000 52 comment=312735366b20d64bd61bff8627f593749f86c964 hugo-0.123.7/ 0000775 0000000 0000000 00000000000 14570377506 0012644 5 ustar 00root root 0000000 0000000 hugo-0.123.7/.circleci/ 0000775 0000000 0000000 00000000000 14570377506 0014477 5 ustar 00root root 0000000 0000000 hugo-0.123.7/.circleci/config.yml 0000664 0000000 0000000 00000006056 14570377506 0016476 0 ustar 00root root 0000000 0000000 parameters: # v2: 11m. defaults: &defaults resource_class: large docker: - image: bepsays/ci-hugoreleaser:1.22200.20000 environment: &buildenv GOMODCACHE: /root/project/gomodcache version: 2 jobs: prepare_release: <<: *defaults environment: &buildenv GOMODCACHE: /root/project/gomodcache steps: - &remote-docker setup_remote_docker: version: 20.10.14 - checkout: path: hugo - &git-config run: command: | git config --global user.email "bjorn.erik.pedersen+hugoreleaser@gmail.com" git config --global user.name "hugoreleaser" - run: command: | cd hugo go mod download go run -tags release main.go release --step 1 - save_cache: key: git-sha-{{ .Revision }} paths: - hugo - gomodcache build_container1: <<: [*defaults] environment: <<: [*buildenv] steps: - &restore-cache restore_cache: key: git-sha-{{ .Revision }} - run: no_output_timeout: 20m command: | mkdir -p /tmp/files/dist1 cd hugo hugoreleaser build -paths "builds/container1/**" -workers 3 -dist /tmp/files/dist1 -chunks $CIRCLE_NODE_TOTAL -chunk-index $CIRCLE_NODE_INDEX - &persist-workspace persist_to_workspace: root: /tmp/files paths: - dist1 - dist2 parallelism: 7 build_container2: <<: [*defaults] environment: <<: [*buildenv] docker: - image: bepsays/ci-hugoreleaser-linux-arm64:1.22200.20000 steps: - *restore-cache - &attach-workspace attach_workspace: at: /tmp/workspace - run: command: | mkdir -p /tmp/files/dist2 cd hugo hugoreleaser build -paths "builds/container2/**" -workers 1 -dist /tmp/files/dist2 - *persist-workspace archive_and_release: <<: [*defaults] environment: <<: [*buildenv] steps: - *restore-cache - *attach-workspace - *git-config - run: name: Add github.com to known hosts command: ssh-keyscan github.com >> ~/.ssh/known_hosts - run: command: | cp -a /tmp/workspace/dist1/. ./hugo/dist cp -a /tmp/workspace/dist2/. ./hugo/dist - run: command: | cd hugo hugoreleaser archive hugoreleaser release go run -tags release main.go release --step 2 workflows: version: 2 release: jobs: - prepare_release: filters: branches: only: /release-.*/ - build_container1: requires: - prepare_release - build_container2: requires: - prepare_release - archive_and_release: context: org-global requires: - build_container1 - build_container2 hugo-0.123.7/.dockerignore 0000664 0000000 0000000 00000000101 14570377506 0015310 0 ustar 00root root 0000000 0000000 *.md *.log *.txt .git .github .circleci docs examples Dockerfile hugo-0.123.7/.gitattributes 0000664 0000000 0000000 00000000240 14570377506 0015533 0 ustar 00root root 0000000 0000000 # Text files have auto line endings * text=auto # Go source files always have LF line endings *.go text eol=lf # SVG files should not be modified *.svg -text hugo-0.123.7/.github/ 0000775 0000000 0000000 00000000000 14570377506 0014204 5 ustar 00root root 0000000 0000000 hugo-0.123.7/.github/ISSUE_TEMPLATE/ 0000775 0000000 0000000 00000000000 14570377506 0016367 5 ustar 00root root 0000000 0000000 hugo-0.123.7/.github/ISSUE_TEMPLATE/bug_report.md 0000664 0000000 0000000 00000001003 14570377506 0021053 0 ustar 00root root 0000000 0000000 --- name: 'Bug report' labels: 'Bug, NeedsTriage' assignees: '' about: Create a report to help us improve --- ### What version of Hugo are you using (`hugo version`)?
$ hugo version### Does this issue reproduce with the latest release? hugo-0.123.7/.github/ISSUE_TEMPLATE/config.yml 0000664 0000000 0000000 00000000551 14570377506 0020360 0 ustar 00root root 0000000 0000000 blank_issues_enabled: false contact_links: - name: SUPPORT, ISSUES and TROUBLESHOOTING url: https://discourse.gohugo.io/ about: Please DO NOT use Github for support requests. Please visit https://discourse.gohugo.io for support! You will be helped much faster there. If you ignore this request your issue might be closed with a discourse label. hugo-0.123.7/.github/ISSUE_TEMPLATE/feature_request.md 0000664 0000000 0000000 00000000430 14570377506 0022111 0 ustar 00root root 0000000 0000000 --- name: Proposal about: Propose a new feature for Hugo title: '' labels: 'Proposal, NeedsTriage' assignees: '' ---