Mirror/.github/workflows/CreateRelease.yml
2023-11-09 04:00:51 -05:00

106 lines
2.8 KiB
YAML

name: Create Release
on:
workflow_dispatch:
jobs:
CreateRelease:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Merge Master into AssetStoreRelease
uses: devmasx/merge-branch@master
with:
type: now
from_branch: master
target_branch: AssetStoreRelease
message: "Merged master"
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout AssetStoreRelease
run: |
git checkout -b AssetStoreRelease
git pull origin AssetStoreRelease
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
- name: Install dotnet-script
run: |
dotnet tool install -g dotnet-script
dotnet script --version
- name: Run CreateRelease.cs
run: |
dotnet script .github/CreateRelease.cs
- name: Commit and Push
run: |
git add Assets/Mirror/version.txt
git commit -m "release!: Asset Store Release" -a
git push origin AssetStoreRelease
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#- name: Set Git Config
# run: |
# git config user.name ${{ secrets.COMMITTER_NAME }}
# git config user.email ${{ secrets.COMMITTER_EMAIL }}
#- name: Merge Master into AssetStoreRelease
# run: |
# git fetch --unshallow
# git checkout -b AssetStoreRelease
# git pull
# git merge --no-ff master -m "Merged master"
# git push
#jobs:
# CreateRelease:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Repo
# uses: actions/checkout@v2
# with:
# ref: AssetStoreRelease
# - name: Merge master into AssetStoreRelease
# run: |
# git fetch origin master --depth 1
# git reset --hard origin/master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Set up .NET Core
# uses: actions/setup-dotnet@v1
# - name: Install dotnet-script
# run: |
# dotnet tool install -g dotnet-script
# dotnet script --version
# - name: Run CreateRelease.cs
# run: |
# dotnet script .github/CreateRelease.cs
# - name: Commit and Push
# run: |
# git config --local user.name ${{ secrets.COMMITTER_NAME }}
# git config --local user.email ${{ secrets.COMMITTER_EMAIL }}
# git add Assets/Mirror/version.txt
# git commit -m "release!: Asset Store Release" -a
# # Configure Git to rebase when pulling
# git config --local pull.rebase true
# # Perform a git pull to update the local branch with remote changes
# git pull origin AssetStoreRelease
# # Push the updated branch to the remote
# git push origin AssetStoreRelease
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}