CI #62
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
push: | |
branches: [master] | |
schedule: | |
- cron: '0 8 * * FRI' # At 08:00 on Friday. | |
jobs: | |
generate_rpg_list: | |
name: Generate RPG List | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt install -y curl jq | |
- shell: bash | |
env: | |
API_KEY: ${{ secrets.api_key }} | |
run: ./build-rpglist.sh "$API_KEY" | |
- name: Set date env | |
run: echo "TODAY=$(date '+%Y/%m/%d')" >> $GITHUB_ENV | |
- name: Update Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: latest | |
name: ${{ env.TODAY }} | |
files: | | |
rpglist.json | |
BlockRpg.ps1 | |
block-rpg.sh |