Skip to content

change preview config #2

change preview config

change preview config #2

Workflow file for this run

name: Push changes to gitlab
on:
push:
workflow_dispatch:
permissions:
contents: read
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: "1"
jobs:
Push2Gitlab:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Push To Gitlab
env:
token: ${{ secrets.GITLAB_ACCESS_TOKEN }}
run: |
echo Starting to push repo to gitlab
#git config list
echo Starting to configure git
git config user.name "PhilipPartsch"
git config user.email "[email protected]"
git remote add gitlab "https://PhilipPartsch:${token}@gitlab.com/PhilipPartsch/reconf2023-product-as-code.git"
git config --add remote.gitlab.push "+refs/heads/*:refs/heads/*"
git config --add remote.gitlab.push "+refs/tags/*:refs/tags/*"
git config --add remote.gitlab.push "+refs/change/*:refs/change/*"
echo Finished to configure git
#git config list
echo Unshallow from origin
git fetch --unshallow origin
echo Call git push
git push --mirror gitlab
echo Finished push of repo to gitlab