Skip to content

Commit

Permalink
chore: fixing the toolchain version
Browse files Browse the repository at this point in the history
  • Loading branch information
Amninder Kaur committed Feb 22, 2024
1 parent 67454b6 commit ec0ec6a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ghcr_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name: GHCR Publish
# regex to check the tag format
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
# tags:
# - 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
build:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/npm_publish.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: CI
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
# tags:
# - 'v[0-9]+.[0-9]+.[0-9]+'
env:
DEBUG: napi:*
APP_NAME: scylla_pg_js
Expand Down Expand Up @@ -78,10 +78,10 @@ jobs:
node-version: 18
check-latest: true
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@1.75.0
if: ${{ !matrix.settings.docker }}
with:
toolchain: stable 3 months ago
toolchain: 1.75.0
target: ${{ matrix.settings.target }}
- name: Cache cargo
uses: actions/cache@v4
Expand Down Expand Up @@ -176,5 +176,5 @@ jobs:
- run: ls -R ./scylla_pg_js/npm
- run: ls -R ./scylla_pg_js/artifacts

- name: Publish
run: PATH=$PATH:$(pwd) bin/npm-release.sh # only run on release created or tag
# - name: Publish
# run: PATH=$PATH:$(pwd) bin/npm-release.sh # only run on release created or tag
2 changes: 1 addition & 1 deletion .github/workflows/rust_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
with:
toolchain: stable 3 months ago
toolchain: 1.75.0
- run: bin/ubuntu-setup.sh
- run: rustup component add rustfmt clippy
- name: cargo build
Expand Down
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 scylla_pg_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scylla_pg_core"
version = "0.1.22"
version = "0.1.23"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit ec0ec6a

Please sign in to comment.