3 Commits

Author SHA1 Message Date
41befd6626 substring git sha
All checks were successful
Build and Release Resume PDF / date-fetch (push) Successful in 3s
Check flake.lock / Check health of `flake.lock` (push) Successful in 8s
Check Nix flake / Perform Nix flake checks (push) Successful in 45s
Build and Release Resume PDF / build (push) Successful in 1m37s
2026-03-27 16:05:39 -04:00
f3ae240c68 remove magic cache
Some checks failed
Build and Release Resume PDF / date-fetch (push) Successful in 3s
Check flake.lock / Check health of `flake.lock` (push) Successful in 7s
Build and Release Resume PDF / build (push) Has been cancelled
Check Nix flake / Perform Nix flake checks (push) Has been cancelled
2026-03-27 16:03:55 -04:00
1614e9aed0 add magic cache
Some checks failed
Build and Release Resume PDF / date-fetch (push) Successful in 2s
Check flake.lock / Check health of `flake.lock` (push) Successful in 8s
Check Nix flake / Perform Nix flake checks (push) Successful in 58s
Build and Release Resume PDF / build (push) Failing after 1m34s
2026-03-27 16:00:46 -04:00

View File

@@ -14,10 +14,14 @@ jobs:
runs-on: ubuntu-latest
outputs:
current-date: ${{ steps.get-date.outputs.current-date }}
commit-sha: ${{ steps.get-sha.outputs.commit-sha }}
steps:
- name: Get current date
id: get-date
run: echo "current-date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Get first 7 characters of commit SHA
id: get-sha
run: echo "commit-sha=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_OUTPUT
build:
needs: date-fetch
@@ -45,7 +49,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: result/Alice_Huston_Resume_Software_Engineer.pdf
tag_name: alice-huston-resume-${{ needs.date-fetch.outputs.current-date }}-${{ github.sha }}
body: "Resume PDF built from commit ${{ github.sha }}"
tag_name: alice-huston-resume-${{ needs.date-fetch.outputs.current-date }}-${{ needs.date-fetch.outputs.commit-sha }}
body: "Resume PDF built from commit ${{ github.sha }} on ${{ needs.date-fetch.outputs.current-date }}."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}