Update UploadReleaseGithub.yml #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload release github | ||
on: | ||
push: | ||
tags: | ||
- release.** | ||
jobs: | ||
job1: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
branchname: ${{ steps.step1.outputs.branchname }} | ||
steps: | ||
- id: step1 | ||
run: | | ||
raw=$(git branch -r --contains ${{ github.ref }}) | ||
branch=${raw/origin\/} | ||
echo "branchname=$branch" >> $GITHUB_OUTPUT | ||
build: | ||
environment: build | ||
env: | ||
GIT_USERNAME: ${{ secrets.GIT_USERNAME }} | ||
GIT_AUTH_TOKEN: ${{ secrets.GIT_AUTH_TOKEN }} | ||
BRANCH_NAME: ${{ needs.branch.outputs.branchname }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
# Only release from main branch | ||
- name: Upload if on main branch | ||
if: endsWith(branch, 'test') == true | ||
Check failure on line 30 in .github/workflows/UploadReleaseGithub.yml GitHub Actions / Upload release githubInvalid workflow file
|
||
run: ./gradlew publish | ||
# Only release from main branch | ||
- name: Write if not in main branch | ||
if: endsWith(${{ env.BRANCH_NAME }}, 'test') == false | ||
run: | | ||
echo NOT ON MAIN BRANCH | ||
echo ${{ env.BRANCH_NAME }} |