fix: activity library settings mobile #62
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 | |
on: | |
pull_request: | |
branches: | |
- master | |
- hotfix-* | |
types: [closed] | |
jobs: | |
release: | |
if: ${{ github.event.pull_request.merged == true && startsWith(github.head_ref, 'release-please--') }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: "read" | |
id-token: "write" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup environment variables | |
run: | | |
ACTION_VERSION=$(grep '"version":' package.json | cut -d\" -f4) | |
echo "ACTION_VERSION=${ACTION_VERSION}" >> $GITHUB_ENV | |
- id: "auth" | |
name: "Authenticate to Google Cloud" | |
uses: "google-github-actions/auth@v1" | |
with: | |
token_format: "access_token" | |
workload_identity_provider: ${{ secrets.GCP_WI_PROVIDER_NAME }} | |
service_account: ${{ secrets.GCP_SA_EMAIL }} | |
- name: "Set up Cloud SDK" | |
uses: "google-github-actions/setup-gcloud@v1" | |
- name: "Tag image with production version" | |
run: |- | |
gcloud container images add-tag -q \ | |
${{ secrets.GCP_AR_PARABOL_DEV }}:${{github.event.pull_request.head.sha}} \ | |
${{ secrets.GCP_AR_PARABOL }}:v${{ env.ACTION_VERSION }} | |
- name: Bump version in GitLab | |
run: | | |
curl "https://gitlab.com/api/v4/projects/${{ vars.GITLAB_PROJECT_ID }}/repository/commits" \ | |
--request POST \ | |
--header 'PRIVATE-TOKEN: ${{ secrets.GITLAB_API_TOKEN }}' \ | |
--form "branch=main" \ | |
--form "commit_message=release v${{ env.ACTION_VERSION }}" \ | |
--form "actions[][action]=update" \ | |
--form "actions[][file_path]=version.yaml" \ | |
--form "actions[][content]= | |
# Change it to use a valid docker tag, which are the same of the GitHub tags. Ex: v6.110.0 | |
applicationVersion: &applicationVersion v${{ env.ACTION_VERSION }} | |
global: | |
image: | |
tag: *applicationVersion" |