From 71167ace4cda83aa154d009f8ba3a9ee02287a6d Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 23 Jan 2024 10:06:30 +0100 Subject: [PATCH] RELEASE: fix 4 --- .github/workflows/build_mame.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_mame.yml b/.github/workflows/build_mame.yml index 4cf0acb..3ce74c0 100644 --- a/.github/workflows/build_mame.yml +++ b/.github/workflows/build_mame.yml @@ -61,7 +61,9 @@ jobs: - name: Get branch name id: branch_name - run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV + #run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV + # TODO: I need to enhance this + run: echo "BRANCH_NAME=main" >> $GITHUB_ENV - name: Get date id: date @@ -82,16 +84,13 @@ jobs: token: ${{ secrets.TRIGGER_BUILD_TOKEN }} continue-on-error: true - - name: Set up Git - run: | - git config user.email "actions@github.com" - git config user.name "GitHub Actions" - - name: "Committing changes" uses: EndBug/add-and-commit@v9.1.3 with: message: '[AUTOMATED] Updating MAME after build [skip ci]' github_token: ${{ secrets.TRIGGER_BUILD_TOKEN }} + author_name: GitHub Actions + author_email: actions@github.com