mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-07 13:59:06 +00:00
Fix current commit sha on Docker CI images
This commit is contained in:
parent
834733cb61
commit
7d22dbd26d
4
.github/workflows/docker-image.yml
vendored
4
.github/workflows/docker-image.yml
vendored
@ -52,6 +52,10 @@ jobs:
|
|||||||
id: commit
|
id: commit
|
||||||
uses: pr-mpt/actions-commit-hash@v1
|
uses: pr-mpt/actions-commit-hash@v1
|
||||||
|
|
||||||
|
- name: 'Save Commit Long Hash to TXT File'
|
||||||
|
run: |
|
||||||
|
echo ${{ steps.commit.outputs.long }}>"commit_sha.txt"
|
||||||
|
|
||||||
- name: 'Build and push Docker image'
|
- name: 'Build and push Docker image'
|
||||||
uses: docker/build-push-action@v3
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
|
@ -118,6 +118,11 @@ def get_commit_robosats():
|
|||||||
commit = os.popen('git log -n 1 --pretty=format:"%H"')
|
commit = os.popen('git log -n 1 --pretty=format:"%H"')
|
||||||
commit_hash = commit.read()
|
commit_hash = commit.read()
|
||||||
|
|
||||||
|
# .git folder is included in .dockerignore. But automatic build will drop in a commit_sha.txt file on root
|
||||||
|
if commit_hash == None or commit_hash =="":
|
||||||
|
with open("commit_sha.txt") as f:
|
||||||
|
commit_hash = f.read()
|
||||||
|
|
||||||
return commit_hash
|
return commit_hash
|
||||||
|
|
||||||
premium_percentile = {}
|
premium_percentile = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user