Skip to content

Update version tag to version 2025.0.0 #3

Update version tag to version 2025.0.0

Update version tag to version 2025.0.0 #3

Workflow file for this run

name: Push changes to Gitlab
on:
push:
tags:
- '*'
# branches:
# - main
# - master
release:
types: [published, released]
jobs:
push_to_codebase:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: '${{ github.event.repository.default_branch }}'
fetch-depth: 0
- name: Push to GitLab
run: |
git remote add codebase "https://${{ secrets.CODEBASE_USER_NAME }}:${{ secrets.CODEBASE_ACCESS_TOKEN }}@${{ secrets.CODEBASE_URL }}"
git remote -v
git push --tags codebase "${{ github.event.repository.default_branch }}"