Skip to content

Commit

Permalink
ci: temporarily disable publishing for release
Browse files Browse the repository at this point in the history
The GHA agent keeps running out of disk space when we attempt to publish the full workspace. For the
time being, I can run `release-plz` manually from my own machine.
  • Loading branch information
jacderida committed Feb 10, 2025
1 parent d381706 commit 6eb621c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,14 @@ jobs:
- name: publish crates
shell: bash
run: |
cargo login "${{ secrets.CRATES_IO_TOKEN }}"
# We keep running out of disk space on the GHA agent, so I will just run `release-plz`
# from my own machine for the time being.
echo "This step is temporarily disabled"
# cargo login "${{ secrets.CRATES_IO_TOKEN }}"
# The use of 'awk' suppresses the annoying instrumentation output that makes the log
# difficult to read.
release-plz release --git-token ${{ secrets.AUTONOMI_PAT }} | \
awk '{ if (!/^\s*in release with input/ && !/^\s{4}/) print }'
# release-plz release --git-token ${{ secrets.AUTONOMI_PAT }} | \
# awk '{ if (!/^\s*in release with input/ && !/^\s{4}/) print }'
- name: post notification to slack on failure
if: ${{ failure() }}
Expand Down

0 comments on commit 6eb621c

Please sign in to comment.