chore: update action

This commit is contained in:
2026-06-21 07:54:33 +08:00
Unverified
parent bde26fd536
commit 7964a347cf
2 changed files with 60 additions and 46 deletions
+23 -17
View File
@@ -2,32 +2,38 @@ on:
pull_request: pull_request:
push: push:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build: build:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout repository - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Setup XMake
uses: xmake-io/github-action-setup-xmake@v1
- name: Cache
uses: actions/cache@v4
with: with:
submodules: recursive path: |
~/AppData/Local/.xmake
key: xmake-${{ hashFiles('xmake.lua') }}
restore-keys: |
xmake-
- uses: actions/checkout@v4 - name: Update Repo
run: xmake repo -u
- uses: xmake-io/github-action-setup-xmake@v1 - name: Update Project
with: run: xmake f -a x64 -m release -p windows -v -y
xmake-version: branch@master
- run: |
xmake repo -u
- run: | - name: Build Project
xmake f -a x64 -m release -p windows -v -y run: xmake -v -y
- run: | - name: Upload Artifact
xmake -w -y uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4
with: with:
name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }} name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }}
path: | path: |
bin/ bin/
+37 -29
View File
@@ -2,31 +2,37 @@ on:
release: release:
types: types:
- published - published
jobs: jobs:
build: build:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- name: Checkout repository - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Setup XMake
uses: xmake-io/github-action-setup-xmake@v1
- name: Cache
uses: actions/cache@v4
with: with:
submodules: recursive path: |
~/AppData/Local/.xmake
key: xmake-${{ hashFiles('xmake.lua') }}
restore-keys: |
xmake-
- uses: actions/checkout@v4 - name: Update Repo
run: xmake repo -u
- uses: xmake-io/github-action-setup-xmake@v1 - name: Update Project
with: run: xmake f -a x64 -m release -p windows -v -y
xmake-version: branch@master
- run: |
xmake repo -u
- run: | - name: Build Project
xmake f -a x64 -m release -p windows -v -y run: xmake -v -y
- run: | - name: Upload Artifact
xmake -w -y uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4
with: with:
name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }} name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }}
path: | path: |
@@ -39,24 +45,26 @@ jobs:
contents: write contents: write
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4 - name: Download Artifact
uses: actions/download-artifact@v4
with: with:
name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }} name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }}
path: release/ path: artifact
- run: | - name: Copy Files
cp LICENSE README.md release/
- name: Archive release
run: | run: |
cd release cp LICENSE README.md artifact/
zip -r ../${{ github.event.repository.name }}-windows-x64.zip *
cd ..
- uses: softprops/action-gh-release@v1 - name: Compress Artifact
run: |
zip -r ../${{ github.event.repository.name }}-windows-x64.zip *
working-directory: artifact
- name: Create Release
uses: softprops/action-gh-release@v1
with: with:
append_body: true
files: | files: |
${{ github.event.repository.name }}-windows-x64.zip ${{ github.event.repository.name }}-windows-x64.zip