remove VERSION file #30
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: Release Pillarbox | ||
on: | ||
push: | ||
# Pattern matched against refs/tags | ||
tags: | ||
- '[0-9]+.[0-9].[0-9]' | ||
- '[0-9]+.[0-9].[0-9]-[0-9a-zA-Z]+' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
DEMO_KEY_PASSWORD: ${{ secrets.DEMO_KEY_PASSWORD }} | ||
USERNAME: ${{ github.actor }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VERSION_NAME: ${{ GITHUB_REF_NAME }} | ||
Check failure on line 15 in .github/workflows/release.yml GitHub Actions / Release PillarboxInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check if pre release tag | ||
id: check-tag | ||
run: | | ||
if [[ "${GITHUB_REF_NAME}" =~ [0-9]+.[0-9].[0-9]-[0-9a-zA-Z]+ ]]; then | ||
echo "prerelease=true" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Print release tag | ||
run: | | ||
echo "tag = ${GITHUB_REF_NAME}" | ||
echo "version_name" = ${{ env.VERSION_NAME }}" | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: 'gradle' | ||
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | ||
settings-path: ${{ github.workspace }} # location for the settings.xml file | ||
# the publishing section of your build.gradle | ||
- name: Publish to GitHub Packages | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: publishProdRelease | ||
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: assembleProdRelease | ||
- name: upload artifact to Firebase App Distribution | ||
uses: wzieba/Firebase-Distribution-Github-Action@v1 | ||
with: | ||
appId: ${{ secrets.RELEASE_APP_ID }} | ||
serviceCredentialsFileContent: ${{ secrets.FIREBASE_CREDENTIAL_FILE_CONTENT }} | ||
groups: ${{ secrets.RELEASE_GROUPS }} | ||
file: pillarbox-demo/build/outputs/apk/prod/release/pillarbox-demo-prod-release.apk | ||
- name: Create Github release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
draft: true | ||
prerelease: steps.check-tag.outputs.prerelease == 'true' | ||
skipIfReleaseExists: true | ||
generateReleaseNotes: true |