Skip to content

Commit

Permalink
Add checksums to macos deploy for troubleshooting.
Browse files Browse the repository at this point in the history
  • Loading branch information
johanthoren committed Jan 8, 2023
1 parent 544a4e8 commit f8c2561
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ jobs:
run: |
tar cvzf bibcal-${{ github.ref_name }}-${{ matrix.target }}.tar.gz bibcal-${{ github.ref_name }}-${{ matrix.target }}
- name: Print the SHA256SUM of the compressed archive
run: shasum -a 256 *.tar.gz

- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -286,6 +289,10 @@ jobs:
with:
name: bibcal-${{ github.ref_name }}-${{ matrix.target }}.tar.gz

- name: Print the SHA256SUM of the downloaded archive (macOS)
if: "contains(matrix.target, 'apple')"
run: shasum -a 256 *.tar.gz

- name: Extract archive (NON-WINDOWS)
if: "!contains(matrix.target, 'windows')"
run: tar xvf bibcal-${{ github.ref_name }}-${{ matrix.target }}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject xyz.thoren/bibcal "1.1.3-SNAPSHOT"
(defproject xyz.thoren/bibcal "1.1.2-SNAPSHOT"
:description (str "Calculate dates based on the Bible and the "
"1st Book of Enoch.")
:url "https://github.com/johanthoren/bibcal"
Expand Down

0 comments on commit f8c2561

Please sign in to comment.