mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-26 15:16:24 +00:00
* remove deno as a dependency * use the ACORE_VERSION env var * I forgot client-data * accidentally removed too much * docker-cmd: extraneous parallel flag * typo * remove docker image prune -af the `docker image prune` removes the containers we just build. * fetch everything in the beginning
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
name: import-pending
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
import-pending:
|
|
strategy:
|
|
fail-fast: false
|
|
runs-on: ubuntu-20.04
|
|
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
persist-credentials: false
|
|
# If we're fetching all the history in a later step it makes sense to
|
|
# pre-load it now
|
|
fetch-depth: 0
|
|
ref: ${{ github.ref_name }}
|
|
|
|
- uses: denoland/setup-deno@v1
|
|
with:
|
|
# Specifies latest 1.x
|
|
deno-version: "~1.0"
|
|
|
|
- name: Import and commit pending sql
|
|
run: |
|
|
git config user.email "azerothcorebot@gmail.com" && git config user.name "AzerothCoreBot"
|
|
bash bin/acore-db-pendings
|
|
deno apps/ci/ci-pending-changelogs.ts
|
|
git fetch --unshallow origin "${{ github.ref_name }}"
|
|
git add -A .
|
|
git commit -am "chore(DB): import pending files" -m "Referenced commit(s): ${GITHUB_SHA}" || true
|
|
env:
|
|
# Noting that the branch name can only be master, as per the event
|
|
# triggering this action
|
|
BRANCH: ${{ github.ref_name }}
|
|
|
|
- name: Push changes
|
|
uses: ad-m/github-push-action@fe38f0a751bf9149f0270cc1fe20bf9156854365
|
|
with:
|
|
github_token: ${{ secrets.AC_GITHUB_TOKEN }}
|
|
# Noting that the branch name can only be master, as per the event
|
|
# triggering this action
|
|
branch: ${{ github.ref_name }}
|