Skip to content

Commit

Permalink
updae
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 9, 2024
1 parent 2debdfc commit 9982bb3
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/build-bootstrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,21 @@ jobs:
sudo chown -R $USER:$USER /home/runner/work/alpine-linux-bootstrap
./generate-bootstraps.sh
working-directory: ./scripts
- name: Create github release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
# - name: Create github release
# uses: softprops/action-gh-release@v1
# if: startsWith(github.ref, 'refs/tags/')
# with:
# files: ./scripts/build/*.zip
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


- name: Publish Release
uses: marvinpinto/action-automatic-releases@latest
with:
files: ./scripts/build/*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repo_token: "${{ github.token }}"
automatic_release_tag: "latest-android"
prerelease: false
title: "Release android"
files: |
./scripts/build/*.zip

0 comments on commit 9982bb3

Please sign in to comment.