Skip to content

Commit

Permalink
release-0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cqb13 committed Jan 7, 2024
1 parent e3166a4 commit bb37b67
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: publish

on:
push:
Expand All @@ -11,7 +11,7 @@ permissions:
contents: write

jobs:
rust-release:
publish:
name: ${{ matrix.name }}

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -74,6 +74,6 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
release_name: fmap ${{ steps.get_version.outputs.version }}
release_name: fmap ${{ steps.get_version.outputs.version }}-${{ github.run_number }}
file_glob: true
file: target/*/release/fmap-${{ steps.get_version.outputs.version }}-*.{zip,tar.gz}
20 changes: 20 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Rust

on:
pull_request:
branches:
- main

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit bb37b67

Please sign in to comment.