Skip to content

Commit

Permalink
chore: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo committed Feb 15, 2023
1 parent e79a81a commit 667f387
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ updates:
directory: /typegraph
schedule:
interval: daily
- package-ecosystem: pip
directory: /website
schedule:
interval: daily
- package-ecosystem: pip
directory: /examples
schedule:
Expand Down
17 changes: 11 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ jobs:
echo "Releasing v$VERSION"
- uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref }}
makeLatest: false
prerelease: true
tag: ${{ github.ref_name }}
makeLatest: true
generateReleaseNotes: true
discussionCategory: "Announcements"

Expand All @@ -47,19 +46,24 @@ jobs:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
suffix: ""
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
suffix: ""
- os: windows-latest
target: x86_64-pc-windows-msvc
suffix: .exe
suffix: ".exe"
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ runner.os }}
- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: false
use-cross: true
command: build
args: "--locked --release --package meta-cli --target ${{ matrix.target }}"
- name: Compress
Expand Down Expand Up @@ -145,4 +149,5 @@ jobs:
delete-branch: true
commit-message: "chore: prepare release ${{ steps.bump.outputs.version }}"
title: "chore: prepare release ${{ steps.bump.outputs.version }}"
base: "${{ github.head_ref }}"
body: "Automatic suggested bump"
base: main

0 comments on commit 667f387

Please sign in to comment.