Release #709
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: | |
workflow_run: | |
workflows: [ "Test" ] | |
branches: [ "main", "next" ] | |
types: | |
- completed | |
jobs: | |
main: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: '${{ secrets.TOLGEE_MACHINE_PAT }}' | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: adopt | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
- name: Install node modules | |
run: npm ci | |
- name: Run get new version | |
run: npm run release-dry | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GIT_AUTHOR_NAME: Tolgee Machine | |
GIT_COMMITTER_NAME: Tolgee Machine | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_COMMITTER_EMAIL: [email protected] | |
- name: Set version property | |
id: version | |
run: echo "VERSION=$(test -e .VERSION && echo v$(cat .VERSION))" >> $GITHUB_OUTPUT | |
- name: BootJar with version | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: ./gradlew bootJar | |
env: | |
VERSION: ${{ steps.version.outputs.VERSION }} | |
TOLGEE_API_KEY: ${{secrets.TOLGEE_API_KEY}} | |
TOLGEE_API_URL: ${{secrets.TOLGEE_API_URL}} | |
- name: Login to docker | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p "${{ secrets.DOCKERHUB_PASSWORD }}" | |
- name: Prepare for docker build | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: ./gradlew dockerPrepare | |
env: | |
VERSION: ${{ steps.version.outputs.VERSION }} | |
TOLGEE_API_KEY: ${{secrets.TOLGEE_API_KEY}} | |
TOLGEE_API_URL: ${{secrets.TOLGEE_API_URL}} | |
- name: Create docker image | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: | | |
docker buildx create --use | |
docker buildx build . -t tolgee/tolgee:${{ steps.version.outputs.VERSION }} --platform linux/arm64,linux/amd64 --push | |
docker buildx build . -t tolgee/tolgee:latest --platform linux/arm64,linux/amd64 --push | |
working-directory: build/docker | |
- name: Pack with webapp | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: ./gradlew packResources | |
env: | |
VERSION: ${{ steps.version.outputs.VERSION }} | |
TOLGEE_API_KEY: ${{secrets.TOLGEE_API_KEY}} | |
TOLGEE_API_URL: ${{secrets.TOLGEE_API_URL}} | |
- name: Run npm release | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOLGEE_MACHINE_PAT }} | |
VERSION: ${{ steps.version.outputs.VERSION }} | |
GIT_AUTHOR_NAME: Tolgee Machine | |
GIT_COMMITTER_NAME: Tolgee Machine | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_COMMITTER_EMAIL: [email protected] | |
- name: Tag production and deprecated keys in platform | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: "npm run tag-keys" | |
env: | |
TOLGEE_API_KEY: ${{secrets.TOLGEE_API_KEY}} | |
working-directory: ./webapp | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test | |
path: | | |
./e2e/cypress/videos/**/* | |
./e2e/cypress/screenshots/**/* | |
./build/reports/**/* | |
- name: Trigger Billing repo tests & testing deploy | |
if: ${{ steps.version.outputs.VERSION != '' }} | |
run: | | |
curl \ | |
-X POST \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
-H "Authorization: token ${{ secrets.TOLGEE_MACHINE_PAT }}" \ | |
https://api.github.com/repos/tolgee/billing/actions/workflows/test.yml/dispatches \ | |
-d '{"ref":"main","inputs":{"releaseVersion":"${{ steps.version.outputs.VERSION }}"}}' |