Skip to content

Commit

Permalink
update autobuild
Browse files Browse the repository at this point in the history
  • Loading branch information
mentoster2 committed Mar 24, 2024
1 parent 937a8f2 commit b72d868
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ jobs:
- name: Create a new tag
id: create_tag
run: |
TAG_NAME=my-app-$(date +'%Y%m%d%H%M%S')
TAG_NAME=flipper-hero-$(date +'%Y%m%d%H%M%S')
git config --global user.name 'tag-bot'
git config --global user.email 'tag-bot@mail'
git tag $TAG_NAME
git push origin $TAG_NAME
echo "::set-output name=TAG_NAME::$TAG_NAME"
git push https://github.com/mentoster/Flipper-hero.git $TAG_NAME
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_ENV
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
with:
files: ${{ steps.build-app.outputs.fap-artifacts }}
tag_name: ${{ env.TAG_NAME }}
draft: false # Set to false if you don't want to create a draft release
prerelease: true # Mark the release as a prerelease
env:
Expand Down

0 comments on commit b72d868

Please sign in to comment.