bump versions of actions used
create automatic release only from master (was on any 'workflow_dispatch')
This commit is contained in:
parent
22a4ee2f81
commit
f6fd436d69
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
|
@ -33,7 +33,7 @@ jobs:
|
|||
release: false
|
||||
update: false
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
wget https://www.dropbox.com/s/hcgkwzzmja3m6c0/netradiant-custom-extra-win.zip
|
||||
unzip -o netradiant-custom-extra-win.zip -d "install"
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Windows-${{ matrix.arch }}
|
||||
path: install/
|
||||
|
|
@ -64,7 +64,7 @@ jobs:
|
|||
run: |
|
||||
sudo apt-get -qq update
|
||||
sudo apt-get -y install mesa-common-dev qtbase5-dev
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
|
|
@ -74,19 +74,19 @@ jobs:
|
|||
wget https://www.dropbox.com/s/b1xpajzfa6yjlzf/netradiant-custom-extra-gamepacks.zip
|
||||
unzip -o netradiant-custom-extra-gamepacks.zip -d "install"
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Linux-${{ matrix.arch }}
|
||||
path: install/
|
||||
if-no-files-found: error
|
||||
|
||||
create-testing:
|
||||
if: github.ref == 'refs/heads/master' && github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
||||
if: github.ref == 'refs/heads/master' && ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' )
|
||||
needs: [windows-msys, linux]
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Download Artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
|
||||
- name: Create binary archives
|
||||
shell: cmd
|
||||
|
|
|
|||
2
.github/workflows/shaderManual.yml
vendored
2
.github/workflows/shaderManual.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
|||
shaderManual_deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/github-script@v6
|
||||
- uses: actions/github-script@v7
|
||||
with:
|
||||
github-token: ${{ secrets.ACTION_TOKEN }}
|
||||
script: |
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user