Skip to content

update Nanjing

update Nanjing #134

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: package
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
#paths:
#- 'iRime·½°¸/iRimeÔÆ·½°¸/**'
#- 'script/package/package.php'
#- '.github/workflows/package.yml'
pull_request:
branches:
- master
#paths:
#- 'iRime·½°¸/iRimeÔÆ·½°¸/**'
#- 'script/package/package.php'
#t - '.github/workflows/package.yml'
# A workflow run is made UP Of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
#runs-on: macos-10.15
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
ref: master
# install composer on mac os
#- name: install composer
# run: |
# echo work space ${GITHUB_WORKSPACE}
# cd ${GITHUB_WORKSPACE}/script/package
# curl -sS https://getcomposer.org/installer | php
# mv composer.phar /usr/local/bin/composer
# ls -a ${GITHUB_WORKSPACE}/script/package
# install yaml
- name: update composer
run: |
cd ${GITHUB_WORKSPACE}/script/package
composer update
- name: run package script
env:
ACCESSKEYID: ${{secrets.ACCESSKEYID}}
ACCESSKEYSECRET: ${{secrets.ACCESSKEYSECRET}}
ENDPOINT: ${{secrets.ENDPOINT}}
BUCKET: ${{secrets.BUCKET}}
UPLOADSCHEMAURL: ${{secrets.UPLOADSCHEMAURL}}
run: php ${GITHUB_WORKSPACE}/script/package/package.php
- name: Commit files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add ${GITHUB_WORKSPACE}/script/package/last_update_schema.json
git commit -m "auto commit"
- name: GitHub Push
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}