Skip to content

Commit

Permalink
GH jobs. v++
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed Dec 26, 2024
1 parent 579f076 commit c43053d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: true

env:
CARGO_TERM_COLOR: always
Expand All @@ -15,11 +15,11 @@ jobs:

build_and_test:
name: build and test
uses: radumarias/rencfs/.github/workflows/build_and_tests_reusable.yaml@main
uses: radumarias/rencfs/.github/workflows/build_and_tests_reusable2.yaml@main
secrets: inherit

package:
needs: [version, build_and_test]
needs: [ version, build_and_test ]
uses: radumarias/rencfs/.github/workflows/package_reusable.yaml@main
with:
upload_artifacts: true
Expand All @@ -30,10 +30,10 @@ jobs:
packages: write
contents: read
attestations: write

create_release:
name: create release
needs: [version, package]
needs: [ version, package ]
runs-on: ubuntu-latest
permissions:
contents: write
Expand All @@ -55,7 +55,7 @@ jobs:

aur_publish:
name: publish to AUR
needs: [create_release]
needs: [ create_release ]
runs-on: ubuntu-latest
steps:
- name: download artifact
Expand All @@ -76,10 +76,10 @@ jobs:

cargo_publish:
name: publish to crates.io
needs: [create_release]
needs: [ create_release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: publish
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: publish
run: cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cargo-features = ["profile-rustflags"]
[package]
name = "rencfs"
description = "An encrypted file system that is mounted with FUSE on Linux. It can be used to create encrypted directories."
version = "0.14.3"
version = "0.14.4"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Radu Marias <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion java-bridge/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c43053d

Please sign in to comment.