Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

chore(deps): bump actions/cache from 3.3.2 to 4.0.0 #84

chore(deps): bump actions/cache from 3.3.2 to 4.0.0

chore(deps): bump actions/cache from 3.3.2 to 4.0.0 #84

on:
push:
branches:
- master
name: Release Packaging
jobs:
release:
name: Release Packaging
env:
PROJECT_NAME_UNDERSCORE: "portfolio_cli"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: create artifacts directory
run: mkdir -p target/release && touch target/release/${{ env.PROJECT_NAME_UNDERSCORE }}
- name: Release Build
run: cargo build --release
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: ${{ env.PROJECT_NAME_UNDERSCORE }}
path: target/release/${{ env.PROJECT_NAME_UNDERSCORE }}