We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5fffee commit 59a7b08Copy full SHA for 59a7b08
1 file changed
.github/workflows/build.yml
@@ -28,7 +28,9 @@ jobs:
28
steps:
29
- uses: actions/checkout@v2
30
- name: detect GIT_REVISION
31
- run: echo "::set-env name=GIT_REVISION::$(git describe --tags --always)"
+ run: |
32
+ git fetch origin --tags
33
+ echo "::set-env name=GIT_REVISION::$(git describe --tags --always)"
34
- name: build loaders
35
run: |
36
sudo apt-get install -y $APT_DEPS
0 commit comments