create and deploy 9fb32549123cf7cbd40a568e7343516a387c8efc #8
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: Create and deploy a new release | |
run-name: create and deploy ${{ github.sha }} | |
on: | |
push: | |
branches: | |
- trigger-gitlab-ci | |
jobs: | |
trigger-gitlab-pipeline: | |
runs-on: ubuntu-latest | |
env: | |
GITLAB_API_TOKEN: ${{ secrets.GITLAB_API_TOKEN }} | |
steps: | |
- name: configure environment | |
shell: bash | |
run: | | |
echo "REPO_PUBLIC_URL=${{ github.server_url }}/${{ github.repository }}.git" >> $GITHUB_ENV | |
echo "SCAFFOLD_DIR=scaffold" >> $GITHUB_ENV | |
- name: clone scaffold repository | |
shell: bash | |
run: git clone --depth 1 -b trigger-gitlab-ci https://oauth2:$GITLAB_API_TOKEN@${{ vars.SCAFFOLD_REPO_PUBLIC_URL }} ${{ env.SCAFFOLD_DIR }} | |
- name: trigger Gitlab CI/CD pipeline | |
shell: bash | |
run: | | |
RELEASE_VERSION="${GITHUB_SHA:0:8}" | |
./scripts/gitlab-ci-pipeline.sh ${{ env.REPO_PUBLIC_URL }} ${{ vars.APP_NAME }} $RELEASE_VERSION | |
working-directory: ${{ env.SCAFFOLD_DIR }} |