mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 05:17:24 +08:00
21 lines
454 B
YAML
21 lines
454 B
YAML
name: Record Commit Hash
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
record-hash:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Record commit hash
|
|
run: |
|
|
echo $(git rev-parse HEAD) > liteyuki/resources/vanilla_resource/commit.txt
|
|
|
|
- name: Upload commit hash
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: commit-hash
|
|
path: liteyuki/resources/vanilla_resource/commit.txt |