Skip to content

Commit

Permalink
delete act
Browse files Browse the repository at this point in the history
  • Loading branch information
karllu3 committed Jul 25, 2024
1 parent 1927068 commit 06a5ced
Showing 1 changed file with 11 additions and 29 deletions.
40 changes: 11 additions & 29 deletions .github/workflows/template_update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,19 @@ jobs:
- name: Create Github project instance
run: cookiecutter . --no-input --config-file cookiecutter_default_gh.yaml

- name: set safe directory
- name: Set safe directory
run: git config --global --add safe.directory /__w/ds-template/ds-template

- name: Validate package build
working-directory: ./ds-gh-default
run: |
python -m pip install .
- name: Prepare git
working-directory: ./ds-gh-default
run: |
git init
git remote add origin [email protected]:karllu3/ds-lk-default.git
git add .
- name: Install pre-commit
Expand All @@ -42,33 +48,9 @@ jobs:
working-directory: ./ds-gh-default
run: pre-commit run --all-files --show-diff-on-failure --color always


- name: Validate package build
working-directory: ./ds-gh-default
run: |
python -m pip install .
- name: Validate sub workflows
- name: Push repo
working-directory: ./ds-gh-default
run: |
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/nektos/act/master/install.sh | bash
./bin/act -P push
# - name: Create Gitlab project instance
# run: cd .. && cookiecutter . --no-input --config-file cookiecutter_default_gl.yaml && cd ds-gl-default
#
# - name: Git init
# run: git init
#
# - name: Install pre-commit
# run: pip3 install pre-commit
#
# - name: Run pre-commit checks
# run: pre-commit run --all-files --show-diff-on-failure --color always
#
# - name: Validate package build
# run: |
# python -m pip install -U build1
# python -m build1

git commit -m "Repo after creation"
git push --force

0 comments on commit 06a5ced

Please sign in to comment.