Skip to content

Commit

Permalink
try to fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Jul 2, 2024
1 parent 67b8a1e commit c7a195a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
env:
FOLDER: site/assets/backups/export-profile/site-rockfrontend
steps:
- uses: actions/checkout@master

- name: Copy tailwind.config.js
run: |
mkdir -p site/assets/backups/export-profile/assets/
cp tailwind.config.js site/assets/backups/export-profile/assets/
mkdir -p $FOLDER/install/assets/
cp tailwind.config.js $FOLDER/install/assets/
- name: Deploy to main branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: main
FOLDER: site/assets/backups/export-profile/site-rockfrontend
FOLDER: ${{ env.FOLDER }}
GITHUB_TOKEN: ${{ secrets.CI_TOKEN }}

0 comments on commit c7a195a

Please sign in to comment.