Skip to content

Commit

Permalink
Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Oct 11, 2023
1 parent 0ebbf16 commit a9d341d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ jobs:
contains(github.ref, 'develop-') || github.ref_name == 'master' }}
nightly: ${{ steps.plan-step.outputs.nightly }}
npm-channel: ${{ steps.plan-step.outputs.npm-channel }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- id: plan-step
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
- Makefile.toml
- rust-toolchain.toml
env:
WITH_COVERAGE: ${{ contains(github.ref, 'develop-') || endsWith(github.ref, 'master') }}
WITH_COVERAGE: ${{ contains(github.ref, 'develop-') || github.ref_name == 'master' }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/planRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Determine release channel. If contains "alpha", "beta", or "rc",
# then publish to next, otherwise latest.
channel=unknown
channel=latest

if git log -1 --pretty=%B | grep -e "-alpha" -e "-beta" -e "-rc"; then
channel=next
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/setupNpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ -d ".yarn/versions" ]; then
yarn version apply --all
fi

if [[ "${NIGHTLY}" == "true" ]]; then
if [[ "$NIGHTLY" == "true" ]]; then
timestamp=$(date +%Y%m%d.%H)
preid="-nightly.$timestamp"

Expand Down

0 comments on commit a9d341d

Please sign in to comment.