This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
fix: iOS 17 negative lookahead regex bug (#53) #13
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: Beagle Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
generate-release: | |
name: Generate release | |
runs-on: macos-10.15 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: '0' | |
ref: 'main' | |
- name: Read secrets from AWS Secrets Manager into environment variables | |
uses: abhilash1in/[email protected] | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
secrets: | | |
beagle/core/* | |
parse-json: true | |
- name: Install Fastlane | |
run: bundle install | |
- name: Deploy new version | |
env: | |
REPO_TOKEN: ${{ env.BEAGLE_CORE_GITHUB_GITHUB_TOKEN }} | |
NAME_REPO_TOKEN: ${{ env.BEAGLE_CORE_GITHUB_GITHUB_USER }} | |
GITHUB_USER: ${{ env.BEAGLE_CORE_GITHUB_GITHUB_USER }} | |
GITHUB_TOKEN: ${{ env.BEAGLE_CORE_GITHUB_GITHUB_TOKEN }} | |
COCOAPODS_TRUNK_TOKEN: ${{ env.BEAGLE_CORE_ARTIFACT_COCOAPODS_TRUNK_TOKEN }} | |
TAG_NAME: ${{ github.REF }} | |
REPO: ${{ github.repository }} | |
COMMITISH: ${{ github.after }} | |
run: bundle exec fastlane deploy |