feat: 슬롯에서 앱을 지우면 해당 앱의 기록은 초기화 #31
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: [v*] | |
jobs: | |
# ClickOnce로 직접 배포하기 위한 빌드입니다. | |
release-clickonce: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Git | |
run: | | |
git config --global url."https://potados99:${{ secrets.PAT }}@github.com".insteadOf "https://github.com" | |
git config --global user.name potados99 | |
git config --global user.email [email protected] | |
- name: Run release script | |
shell: pwsh | |
run: ./release.ps1 -ClickOnce | |
# Steam에 올리기 위한 빌드입니다. | |
release-artifact: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run release script | |
shell: pwsh | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./release.ps1 -Artifact -Constants "STEAM" |