remove rockshell submodule from profile #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to site profile branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy to site profile branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Remove rockshell submodule | |
run: | | |
git submodule deinit -f -- rockshell | |
rm -rf .git/modules/rockshell | |
git rm -f rockshell | |
git commit -m "Remove rockshell submodule" | |
- name: Deploy | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: profile | |
FOLDER: site/assets/backups/export-profile/site-rockfrontend | |
GITHUB_TOKEN: ${{ secrets.CI_TOKEN }} |