Skip to content

fix: folders in makefile #36

fix: folders in makefile

fix: folders in makefile #36

Workflow file for this run

name: Release workflow
on:
push:
# tags:
# - '*'
permissions:
contents: write
jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-22.04]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build
run: |
VERSION=v0.0.0
make build
- name: Build doc
run: |
make build-doc
- name: Upload Documentation
uses: actions/upload-artifact@v4
with:
name: documentation
path: ./todayiwill/target/doc
- name: Build deb package
run: |
cd ..
VERSION=v0.0.0
sudo apt-get install ruby-dev build-essential
sudo gem install --no-document fpm
make build-deb
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
./todayiwill/target/release
./todayiwill_*.deb
./install-*
./uninstall-*