ci(auto-update): fix hash file not changed in the right place #340
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: ["main"] | |
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 }} | |
- 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 | |
- 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', | |
] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |