Avoid a third-party GH Actions

OpenRA PR 21805.
This commit is contained in:
Pavel Penev 2025-03-31 02:54:56 +03:00 committed by Matthias Mailänder
parent 9d91f85dfa
commit 652774e37c

View File

@ -32,13 +32,11 @@ jobs:
./packaging/linux/buildpackage.sh "${GIT_TAG}" "${PWD}/build/linux" ./packaging/linux/buildpackage.sh "${GIT_TAG}" "${PWD}/build/linux"
- name: Upload Packages - name: Upload Packages
uses: svenstaro/upload-release-action@v2 env:
with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }} shell: bash
tag: ${{ github.ref }} run: |
overwrite: true gh release upload ${{ github.ref_name }} build/linux/*
file_glob: true
file: build/linux/*
macos: macos:
name: macOS Disk Image name: macOS Disk Image
@ -68,13 +66,11 @@ jobs:
./packaging/macos/buildpackage.sh "${GIT_TAG}" "${PWD}/build/macos" ./packaging/macos/buildpackage.sh "${GIT_TAG}" "${PWD}/build/macos"
- name: Upload Package - name: Upload Package
uses: svenstaro/upload-release-action@v2 env:
with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }} shell: bash
tag: ${{ github.ref }} run: |
overwrite: true gh release upload ${{ github.ref_name }} build/macos/*
file_glob: true
file: build/macos/*
windows: windows:
name: Windows Installers name: Windows Installers
@ -101,10 +97,8 @@ jobs:
./packaging/windows/buildpackage.sh "${GIT_TAG}" "${PWD}/build/windows" ./packaging/windows/buildpackage.sh "${GIT_TAG}" "${PWD}/build/windows"
- name: Upload Packages - name: Upload Packages
uses: svenstaro/upload-release-action@v2 env:
with: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }} shell: bash
tag: ${{ github.ref }} run: |
overwrite: true gh release upload ${{ github.ref_name }} build/windows/*
file_glob: true
file: build/windows/*