Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ jobs:
env:
# Required to authenticate with Git
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: './rivet'
run: |
# Configure Git
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"

# Install Deno
curl -fsSL https://deno.land/x/install/install.sh | sh
Expand All @@ -70,12 +71,12 @@ jobs:
EOF

# Install dependencies
cd ./rivet && yarn install --immutable
yarn install --immutable

if [ "${{ inputs.latest }}" = "true" ]; then
cd ./rivet && ./scripts/release/main.ts --version "${{ github.event.inputs.version }}" --setupCi
./scripts/release/main.ts --version "${{ github.event.inputs.version }}" --setupCi
else
cd ./rivet && ./scripts/release/main.ts --version "${{ github.event.inputs.version }}" --no-latest --setupCi
./scripts/release/main.ts --version "${{ github.event.inputs.version }}" --no-latest --setupCi
fi


Expand Down
Loading