Update pipelines with various fixes
This commit is contained in:
parent
aa634d03e2
commit
62a5739d86
9 changed files with 59 additions and 57 deletions
27
.github/actions/download-profiles/action.yml
vendored
Normal file
27
.github/actions/download-profiles/action.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: Download Provisioning Profiles
|
||||||
|
inputs:
|
||||||
|
app-store-key:
|
||||||
|
description: App Store key in PEM PKCS#8 format
|
||||||
|
required: true
|
||||||
|
app-store-key-id:
|
||||||
|
description: App Store key ID
|
||||||
|
required: true
|
||||||
|
app-store-key-issuer-id:
|
||||||
|
description: App Store key issuer ID
|
||||||
|
required: true
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
steps:
|
||||||
|
- shell: bash
|
||||||
|
run: |
|
||||||
|
cat << EOF > api-key.json
|
||||||
|
{
|
||||||
|
"key_id": "${{ inputs.app-store-key-id }}",
|
||||||
|
"issuer_id": "${{ inputs.app-store-key-issuer-id }}",
|
||||||
|
"key": "${{ inputs.app-store-key }}"
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
fastlane sigh download_all --api_key_path api-key.json --download_xcode_profiles
|
||||||
|
|
||||||
|
rm -rf api-key.json
|
||||||
3
.github/workflows/build-appimage.yml
vendored
3
.github/workflows/build-appimage.yml
vendored
|
|
@ -6,6 +6,9 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "*"
|
- "*"
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
jobs:
|
jobs:
|
||||||
appimage:
|
appimage:
|
||||||
name: Build AppImage
|
name: Build AppImage
|
||||||
|
|
|
||||||
3
.github/workflows/build-docker.yml
vendored
3
.github/workflows/build-docker.yml
vendored
|
|
@ -6,6 +6,9 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- "*"
|
- "*"
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Docker Image
|
name: Build Docker Image
|
||||||
|
|
|
||||||
2
.github/workflows/build-rust.yml
vendored
2
.github/workflows/build-rust.yml
vendored
|
|
@ -58,7 +58,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y ${{ join(matrix.packages, ' ') }}
|
sudo apt-get install -y ${{ join(matrix.packages, ' ') }}
|
||||||
- name: Install Windows Deps
|
- name: Configure LLVM
|
||||||
if: matrix.os == 'windows-2022'
|
if: matrix.os == 'windows-2022'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: echo "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin" >> $GITHUB_PATH
|
run: echo "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin" >> $GITHUB_PATH
|
||||||
|
|
|
||||||
2
.github/workflows/lint-swift.yml
vendored
2
.github/workflows/lint-swift.yml
vendored
|
|
@ -13,4 +13,4 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: swiftlint lint --reporter github-actions-logging
|
run: swiftlint lint --strict --reporter github-actions-logging
|
||||||
|
|
|
||||||
29
.github/workflows/release-appimage.yml
vendored
29
.github/workflows/release-appimage.yml
vendored
|
|
@ -1,29 +0,0 @@
|
||||||
name: Release (AppImage)
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- created
|
|
||||||
jobs:
|
|
||||||
appimage:
|
|
||||||
name: Build AppImage
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container: docker
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
docker build -t appimage-builder . -f burrow-gtk/build-aux/Dockerfile
|
|
||||||
docker create --name temp appimage-builder
|
|
||||||
docker cp temp:/app/burrow-gtk/build-appimage/Burrow-x86_64.AppImage .
|
|
||||||
docker rm temp
|
|
||||||
- name: Upload to GitHub
|
|
||||||
uses: SierraSoftworks/gh-releases@v1.0.7
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
release_tag: ${{ github.ref_name }}
|
|
||||||
overwrite: 'true'
|
|
||||||
files: |
|
|
||||||
Burrow-x86_64.AppImage
|
|
||||||
5
.github/workflows/release-apple.yml
vendored
5
.github/workflows/release-apple.yml
vendored
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
- x86_64-apple-darwin
|
- x86_64-apple-darwin
|
||||||
- aarch64-apple-darwin
|
- aarch64-apple-darwin
|
||||||
env:
|
env:
|
||||||
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
|
DEVELOPER_DIR: /Applications/Xcode_16.0.app/Contents/Developer
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
@ -40,8 +40,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
targets: ${{ join(matrix.rust-targets, ', ') }}
|
targets: ${{ join(matrix.rust-targets, ', ') }}
|
||||||
- name: Configure Version
|
- name: Configure Version
|
||||||
|
id: version
|
||||||
shell: bash
|
shell: bash
|
||||||
run: Tools/version.sh
|
run: echo "BUILD_NUMBER=$(Tools/version.sh)" >> $GITHUB_OUTPUT
|
||||||
- name: Archive
|
- name: Archive
|
||||||
uses: ./.github/actions/archive
|
uses: ./.github/actions/archive
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
2
.github/workflows/release-if-needed.yaml
vendored
2
.github/workflows/release-if-needed.yaml
vendored
|
|
@ -9,6 +9,8 @@ jobs:
|
||||||
create:
|
create:
|
||||||
name: Create Release If Needed
|
name: Create Release If Needed
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
|
||||||
7
.github/workflows/release-linux.yml
vendored
7
.github/workflows/release-linux.yml
vendored
|
|
@ -19,16 +19,11 @@ jobs:
|
||||||
docker create --name temp appimage-builder
|
docker create --name temp appimage-builder
|
||||||
docker cp temp:/app/burrow-gtk/build-appimage/Burrow-x86_64.AppImage .
|
docker cp temp:/app/burrow-gtk/build-appimage/Burrow-x86_64.AppImage .
|
||||||
docker rm temp
|
docker rm temp
|
||||||
- name: Get Build Number
|
|
||||||
id: version
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "BUILD_NUMBER=$(Tools/version.sh)" >> $GITHUB_OUTPUT
|
|
||||||
- name: Attach Artifacts
|
- name: Attach Artifacts
|
||||||
uses: SierraSoftworks/gh-releases@v1.0.7
|
uses: SierraSoftworks/gh-releases@v1.0.7
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
release_tag: builds/${{ steps.version.outputs.BUILD_NUMBER }}
|
release_tag: ${{ github.ref_name }}
|
||||||
overwrite: "true"
|
overwrite: "true"
|
||||||
files: |
|
files: |
|
||||||
Burrow-x86_64.AppImage
|
Burrow-x86_64.AppImage
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue