We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4efd71 commit 1024c60Copy full SHA for 1024c60
.github/workflows/push.yml
@@ -8,13 +8,16 @@ jobs:
8
name: Build Arduino Libs
9
runs-on: ubuntu-22.04
10
steps:
11
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
12
- name: Install dependencies
13
run: bash ./tools/prepare-ci.sh
14
+ - name: Get current branch
15
+ run: |
16
+ echo "GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_ENV
17
- name: Build Arduino Libs
18
run: bash ./build.sh
19
- name: Release
- uses: jason2866/action-gh-release@v1.2
20
+ uses: jason2866/action-gh-release@v1.3
21
with:
22
tag_name: ${{ github.run_number }}
23
body_path: release-info.txt
0 commit comments