34 lines
918 B
YAML
34 lines
918 B
YAML
name: build documentation and publish
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: remove all file except icon.png
|
|
run: find . -type f -not \( -name 'icon.png' -or -name '*.json' -or -name '*.yml' \) -delete
|
|
- name: cp
|
|
run: |
|
|
mkdir ./tmp
|
|
cp -r ./Apps ./tmp
|
|
cp recommend-list.json category-list.json ./tmp
|
|
ls ./tmp
|
|
- name: Pushes to another repository
|
|
uses: cpina/github-action-push-to-another-repository@main
|
|
env:
|
|
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB2 }}
|
|
with:
|
|
source-directory: './tmp'
|
|
destination-github-username: 'IceWhaleTech'
|
|
destination-repository-name: '_appstore'
|
|
user-email: q2676515970@163.com
|
|
target-directory: './'
|
|
|