Skip to content

Commit

Permalink
Disable build and fix script path.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion committed Aug 8, 2023
1 parent 4c4e288 commit b12c19f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
steps:
- name: Configure rebar3
shell: bash
run: ./github/scripts/configure_rebar3.sh
run: ./.github/scripts/configure_rebar3.sh
env:
HEX_AUTH_TOKEN: ${{ inputs.token }}
if: ${{ inputs.dry_run == 'false' }}
Expand All @@ -31,3 +31,4 @@ runs:
run: echo PUBLISHING! #rebar3 hex publish
# Do not publish a dry run.
if: ${{ inputs.dry_run == 'false' }}

Empty file modified .github/scripts/configure_rebar3.sh
100644 → 100755
Empty file.
8 changes: 4 additions & 4 deletions .github/workflows/manual-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
otp-version: 25.x
rebar3-version: 3.18.0
- uses: actions/checkout@v3
- id: build-and-test
# Build using the same steps from CI.
name: Build and Test
uses: ./.github/actions/ci
# - id: build-and-test
# # Build using the same steps from CI.
# name: Build and Test
# uses: ./.github/actions/ci

- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0.0
name: 'Get the hex publishing token'
Expand Down

0 comments on commit b12c19f

Please sign in to comment.