fix: gravity center not working and cursor disappearing fixes #58
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 | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
tag: | |
name: Tag repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Start Deploy Message | |
uses: Basis-Theory/github-actions/deploy-slack-action@master | |
with: | |
slack-api-token: ${{ secrets.SLACK_DUCKBOT_API_KEY }} | |
channel: ${{ vars.SLACK_DUCKBOT_PRODUCT_DEPLOY_CHANNEL }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.SEMANTIC_RELEASE_PAT }} | |
- name: Bump version and push tag | |
id: tag-version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
default_bump: false | |
tag_prefix: "" | |
- name: Commit files | |
if: ${{ steps.tag-version.outputs.release_type != '' }} | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "github-actions[bot]" | |
sed -i "s/\(versionName = \)'[^']*'/\1'${{ steps.tag-version.outputs.new_tag }}'/g" lib/build.gradle | |
sed -i "s/\(basistheory-android:\)[^']*'/\1${{ steps.tag-version.outputs.new_tag }}'/g" README.md | |
echo "${{ steps.tag-version.outputs.changelog }}" | cat - CHANGELOG.md > temp && mv temp CHANGELOG.md | |
git add CHANGELOG.md README.md lib/build.gradle | |
git commit -m "chore(release): updating version and changelog ${{ steps.tag-version.outputs.new_tag }} [skip ci]" || echo "Nothing to update" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
if: ${{ steps.tag-version.outputs.release_type != '' }} | |
with: | |
github_token: ${{ secrets.SEMANTIC_RELEASE_PAT }} | |
branch: ${{ github.ref }} | |
- name: Stop Deploy Message | |
if: always() | |
uses: Basis-Theory/github-actions/deploy-slack-action@master | |
with: | |
slack-api-token: ${{ secrets.SLACK_DUCKBOT_API_KEY }} | |
channel: ${{ vars.SLACK_DUCKBOT_PRODUCT_DEPLOY_CHANNEL }} | |
status: 'done' |