Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ jobs:
GCCSDK_INSTALL_ENV: /opt/netsurf/${{ matrix.toolchain }}/env
run: make -C sdk

- name: Write testament
run: |
echo "Date: $(date -u +"%Y-%m-%d %H:%M:%S UTC")" > /opt/netsurf/${{ matrix.toolchain }}/BUILD_INFO.txt
echo "Branch: ${{ github.ref_name }}" >> /opt/netsurf/${{ matrix.toolchain }}/BUILD_INFO.txt
echo "Commit: $(git rev-parse HEAD)" >> /opt/netsurf/${{ matrix.toolchain }}/BUILD_INFO.txt
echo "Subject: $(git log -1 --pretty=format:'%s')" >> /opt/netsurf/${{ matrix.toolchain }}/BUILD_INFO.txt

# Have to tar first to retain permissions
# Exclude unneeded files to reduce size
- name: Make tarball
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
# Clean up temporary releases / tags for deleted branches
cleanup:
name: "Cleanup '${{ github.event.ref }}' temporary release"
name: "Cleanup '${{ github.event.ref }}'"
runs-on: ubuntu-latest
# Only run for branch deletions, not tag deletions
if: github.event.ref_type == 'branch'
Expand Down