Skip to content

Commit

Permalink
Feature/prepare release (#649)
Browse files Browse the repository at this point in the history
* [変更]ワークフローを修正

* [変更]テストを修正

* [変更]スクリプトファイルをリリース用に変更
  • Loading branch information
Hayao-H authored Sep 12, 2024
1 parent e27b9ae commit 56800f4
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 21,133 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- uses: actions/checkout@v3
with:
ref: develop
- name: Setup .NET 6.0.*
- name: Setup .NET 8.0.*
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
dotnet-version: 8.0.*
- name: Clean
run: dotnet clean && dotnet nuget locals all --clear
- name: Build
Expand Down Expand Up @@ -49,18 +49,18 @@ jobs:
- uses: actions/checkout@v3
with:
ref: develop
- name: Setup .NET6.0
- name: Setup .NET8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
dotnet-version: 8.0.*
- name: Download ffmpeg
shell: powershell
run: |
mkdir tmp -force
mkdir ffmpeg/bin
cd tmp
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest https://github.com/GyanD/codexffmpeg/releases/download/6.0/ffmpeg-6.0-full_build.zip -o ffbin.zip
Invoke-WebRequest https://github.com/GyanD/codexffmpeg/releases/download/7.0.2/ffmpeg-7.0.2-full_build.zip -o ffbin.zip
Expand-Archive ffbin.zip -Force
$item = Get-Childitem -Recurse -Filter ffmpeg.exe
$item2 = Get-Childitem -Recurse -Filter ffprobe.exe
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- uses: actions/checkout@v3
with:
ref: main
- name: Setup .NET 6.0.*
- name: Setup .NET 8.0.*
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
dotnet-version: 8.0.*
- name: Clean
run: dotnet clean && dotnet nuget locals all --clear
- name: Build
Expand Down Expand Up @@ -63,18 +63,18 @@ jobs:
- uses: actions/checkout@v3
with:
ref: main
- name: Setup .NET6.0
- name: Setup .NET8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
dotnet-version: 8.0.*
- name: Download ffmpeg
shell: powershell
run: |
mkdir tmp -force
mkdir ffmpeg/bin
cd tmp
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest https://github.com/GyanD/codexffmpeg/releases/download/6.0/ffmpeg-6.0-full_build.zip -o ffbin.zip
Invoke-WebRequest https://github.com/GyanD/codexffmpeg/releases/download/7.0.2/ffmpeg-7.0.2-full_build.zip -o ffbin.zip
Expand-Archive ffbin.zip -Force
$item = Get-Childitem -Recurse -Filter ffmpeg.exe
$item2 = Get-Childitem -Recurse -Filter ffprobe.exe
Expand Down
Loading

0 comments on commit 56800f4

Please sign in to comment.