Skip to content

Commit

Permalink
Add create/deploy release Github workflow (#305)
Browse files Browse the repository at this point in the history
* add github workflows to create and deploy new releases

* update workflow: switch to main branch
  • Loading branch information
jordanguedj authored Mar 13, 2024
1 parent 691e825 commit 3a6d17d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/create-deploy-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create and deploy a new release
run-name: create and deploy ${{ github.sha }}
on:
push:
branches:
- main
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 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 }}

0 comments on commit 3a6d17d

Please sign in to comment.