Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Mar 28, 2024
1 parent 8bb7845 commit 66e0dc0
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 71 deletions.
55 changes: 6 additions & 49 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- 'develop'
pull_request:
pull_request_target:
# Only following types are handled by the action, but one can default to all as well
types: [ opened, reopened, synchronize ]

Expand All @@ -26,52 +26,9 @@ jobs:
commitish: develop
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout repository
uses: actions/checkout@v4
with:
ref: 'develop'
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Configure dummy files
run: |
mv app/.travic-ci/google-services.json app/google-services.json
mv app/.travic-ci/secrets app/.config/secrets.properties
- name: Extract version
id: version
run: echo "${{ steps.release_drafter.outputs.resolved_version }}" > VERSION

- name: Calculate code
id: code
run: |
IFS='.' read -ra VER <<< "$(cat VERSION)"
MAJOR=$((VER[0] * 1000000000))
MINOR=$((VER[1] * 1000000))
PATCH=$((VER[2] * 1000))
CODE=$((MAJOR + MINOR + PATCH))
echo "version=$(cat VERSION)" > gradle/version.properties
echo "code=$CODE" >> gradle/version.properties
echo "name=v$(cat VERSION)" >> gradle/version.properties
- name: Show version
run: cat gradle/version.properties

- name: Generate version.json
run: ./gradlew generateVersions

- name: Push auto generated version file
uses: stefanzweifel/git-auto-commit-action@v5
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
commit_message: "automation: update version.properties"
branch: platform/update-version-meta-data
commit_options: '--no-verify --signoff'
file_pattern: 'gradle/version.properties app/.meta/version.json'
repository: .
commit_author: Author <actions@github.com>
create_branch: true
push_options: '--force'
skip_fetch: true
token: ${{ secrets.GITHUB_TOKEN }}
event-type: version-update-and-push
client-payload: '{"version": "${{ steps.release_drafter.outputs.resolved_version }}"}'
67 changes: 45 additions & 22 deletions .github/workflows/version-updater.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,68 @@
name: version-updater
name: version-update

on:
push:
branches:
- 'platform/update-version-meta-data'

workflow_dispatch:
inputs:
branchName:
description: Pull request against branch
default: 'platform/update-version-meta-data'
type: choice
options:
- 'platform/update-version-meta-data'
required: true

repository_dispatch:
types: [version-update-and-push]

permissions:
contents: write
pull-requests: write
contents: read

jobs:
version-updater:
version-update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: develop
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Configure dummy files
run: |
mv app/.travic-ci/google-services.json app/google-services.json
mv app/.travic-ci/secrets app/.config/secrets.properties
- name: Extract version information to file
run: echo "${{ github.event.client_payload.version }}" > VERSION

- name: Create version.properties using extracted version
run: |
IFS='.' read -ra VER <<< "$(cat VERSION)"
MAJOR=$((VER[0] * 1000000000))
MINOR=$((VER[1] * 1000000))
PATCH=$((VER[2] * 1000))
CODE=$((MAJOR + MINOR + PATCH))
echo "version=$(cat VERSION)" > gradle/version.properties
echo "code=$CODE" >> gradle/version.properties
echo "name=v$(cat VERSION)" >> gradle/version.properties
- name: Clean up version information file
run: rm VERSION

- name: Preview created version.properties
run: cat gradle/version.properties

- name: Generate version.json
run: ./gradlew generateVersions

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
signoff: true
delete-branch: true
commit-message: "automation: update version.properties"
author: "Author <actions@github.com>"
title: "platform: automated version update"
body: |
This PR was automatically generated to update version.properties.
branch: ${{ github.event.inputs.branchName }}
base: develop
This PR was automatically generated to update `version.properties`
branch: platform/update-version-meta-data
labels: "skip-changelog"
assignees: "wax911"
reviewers: "wax911"

0 comments on commit 66e0dc0

Please sign in to comment.