Skip to content

Commit

Permalink
⚙️ disable
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-cvit committed Jan 10, 2024
1 parent c3fe6ae commit 830e974
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,27 +43,27 @@ jobs:
docker build cyclops-ctrl -t cyclopsui/cyclops-ctrl:$TAG
docker push cyclopsui/cyclops-ctrl:$TAG
update-install-manifest:
needs:
- build-UI
- build-controller
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: update install manifest
run: |
TAG=$(git describe --tags --abbrev=0)
INSTALL_YAML=$GITHUB_WORKSPACE/install/cyclops-install.yaml
sed -i 's/cyclopsui\/cyclops-ctrl\:.*/cyclopsui\/cyclops-ctrl\:'$TAG'/' $INSTALL_YAML
sed -i 's/cyclopsui\/cyclops-ui\:.*/cyclopsui\/cyclops-ui\:'$TAG'/' $INSTALL_YAML
# update file
git fetch origin main
git checkout main
git config --global user.email "[email protected]"
git config --global user.name "petar-cvit"
git status
git add $INSTALL_YAML
git commit -m '⚙️ update cyclops to '$TAG
git push origin HEAD:main
# update-install-manifest:
# needs:
# - build-UI
# - build-controller
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: update install manifest
# run: |
# TAG=$(git describe --tags --abbrev=0)
# INSTALL_YAML=$GITHUB_WORKSPACE/install/cyclops-install.yaml
#
# sed -i 's/cyclopsui\/cyclops-ctrl\:.*/cyclopsui\/cyclops-ctrl\:'$TAG'/' $INSTALL_YAML
# sed -i 's/cyclopsui\/cyclops-ui\:.*/cyclopsui\/cyclops-ui\:'$TAG'/' $INSTALL_YAML
#
# # update file
# git fetch origin main
# git checkout main
# git config --global user.email "[email protected]"
# git config --global user.name "petar-cvit"
# git status
# git add $INSTALL_YAML
# git commit -m '⚙️ update cyclops to '$TAG
# git push origin HEAD:main

0 comments on commit 830e974

Please sign in to comment.