Skip to content

Update

Update #6

Workflow file for this run

name: Update
on: [workflow_dispatch]
jobs:
update:
runs-on: [debian-10]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- run: wget https://origin.warframe.com/PublicExport/index_en.txt.lzma
- run: git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
- run: git config --local user.name "github-actions[bot]"
- run: git commit -a -m "Add index_en.txt.lzma"
- uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}