mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
30 lines
737 B
YAML
30 lines
737 B
YAML
name: Latest Dev Commit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- development
|
|
|
|
jobs:
|
|
update-hash:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get latest commit hash
|
|
id: vars
|
|
run: echo "::set-output name=commit_hash::$(git rev-parse HEAD)"
|
|
|
|
- name: Update latest_dev_commit.txt
|
|
run: echo "${{ steps.vars.outputs.commit_hash }}" > ./public/latest_dev_commit.txt
|
|
|
|
- name: Commit and push
|
|
run: |
|
|
git config --local user.email "action@github.com"
|
|
git config --local user.name "GitHub Action"
|
|
git add ./public/latest_dev_commit.txt
|
|
git commit -m "Update latest_dev_commit.txt with latest commit hash"
|
|
git push
|