diff --git a/.github/workflows/git-push.yml b/.github/workflows/git-push.yml index 1e960a2..4e6b54d 100644 --- a/.github/workflows/git-push.yml +++ b/.github/workflows/git-push.yml @@ -7,24 +7,27 @@ on: jobs: build: runs-on: ubuntu-latest - container: pandoc/latex steps: - - uses: actions/checkout@v3 - - name: Install mustache (to update the date) - run: apk add ruby && gem install mustache - - name: creates output - run: sh ./build.sh + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '16' + - name: Install dependencies + run: npm install + - name: Build + run: npm run build + - name: Prepare output directory + run: | + mkdir -p output + cp -r build/* output/ - name: Pushes to another repository - id: push_directory uses: cpina/github-action-push-to-another-repository@main env: API_TOKEN_GITHUB: ${{ secrets.AUTO_KEY }} with: source-directory: 'output' - destination-github-username: seung365 - destination-repository-name: alphamail-frontend + destination-github-username: 'seung365' + destination-repository-name: 'alphamail-frontend' user-email: ${{ secrets.OFFICIAL_ACCOUNT_EMAIL}} commit-message: ${{ github.event.commits[0].message }} target-branch: main - - name: Test get variable exported by push-to-another-repository - run: echo $DESTINATION_CLONED_DIRECTORY