Skip to content

Commit

Permalink
improve deployment commits
Browse files Browse the repository at this point in the history
  • Loading branch information
dhimmel committed Jun 30, 2024
1 parent e0f3a90 commit 1bbe9f4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set parameters
id: params
shell: bash
run: |
DATE_ISO=$(date --utc --iso)
echo "Setting parameter date_iso=$DATE_ISO"
echo "date_iso=$DATE_ISO" >> $GITHUB_OUTPUT
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -26,3 +33,8 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: output
publish_branch: gh-pages
full_commit_message: |
publish output on ${{ steps.params.outputs.date_iso }}
code version ${{ github.sha }}
built by <${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}>

0 comments on commit 1bbe9f4

Please sign in to comment.