Skip to content

ci: asd

ci: asd #328

Workflow file for this run

name: Release
on:
push:
branches: ["main", "cicd/add-semantic-release"]
jobs:
build-server:
runs-on: ubuntu-latest
strategy:
matrix:
build: [amd64, armhf]
include:
- build: amd64
os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-gnu
- build: armhf
os: ubuntu-latest
rust: stable
target: armv7-unknown-linux-gnueabihf
env:
CARGO_TERM_COLOR: always
defaults:
run:
shell: bash
working-directory: ./server
steps:
- uses: actions/checkout@v3
# - name: 🦀 - Install Rust
# uses: actions-rs/toolchain@v1
# with:
# toolchain: ${{ matrix.rust }}
# target: ${{ matrix.target }}
# override: true
# - name: 🌱 - Install dependencies
# run: cargo install cross --git https://github.com/cross-rs/cross
# - name: 🔨 - Build
# run: >
# cross build --release --target ${{ matrix.target }} && \
# mv target/**/release/rusty_controller server-${{ matrix.build }}
- run: echo "hehe" > server-${{ matrix.build }}
- name: 📦 - Copy artifact
uses: actions/upload-artifact@v4
with:
name: server-${{ matrix.build }}
path: server/server-${{ matrix.build }}
if-no-files-found: error
build-app:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./app
steps:
- uses: actions/checkout@v3
# - uses: subosito/flutter-action@v2
# with:
# channel: 'stable'
# - name: 🌱 - Get dependencies
# run: flutter pub get
# - name: 🔨 - Build APK
# run: flutter build apk
# - run: mv build/app/outputs/flutter-apk/app-release.apk ../app.apk
- run: echo "aaa" > app.apk
- name: 📦 - Copy artifact
uses: actions/upload-artifact@v4
with:
name: app.apk
path: app.apk
release:
needs: [build-server, build-app]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 📦 - Copy server artifacts
uses: actions/download-artifact@v4
with:
path: artifacts/
merge-multiple: true
- name: 🧐 - Display structure of downloaded artifacts
run: ls -R artifacts/
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
branches: |
[
'main',
'cicd/add-semantic-release'
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}