Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
bazel_test_command: "bazel test //src/... //test/... //third_party/..."
prerelease: false
release_files: rules_scala-*.tar.gz
release_prep_command: .github/workflows/workspace_snippet.sh
tag_name: ${{ inputs.tag_name || github.ref_name }}

publish-to-bcr:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

set -o errexit -o nounset -o pipefail

# Set by GH actions, see
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
TAG="${GITHUB_REF_NAME}"
# Single tag arg is passed by https://github.com/bazel-contrib/.github/blob/master/.github/workflows/release_ruleset.yaml
TAG="$1"
VERSION="${TAG:1}"
PREFIX="rules_scala-${VERSION}"
ARCHIVE="rules_scala-$TAG.tar.gz"
Expand Down