diff --git a/.github/actions/publish/action.yml b/.github/actions/publish/action.yml index 3fdd285..902cdea 100644 --- a/.github/actions/publish/action.yml +++ b/.github/actions/publish/action.yml @@ -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' }} @@ -31,3 +31,4 @@ runs: run: echo PUBLISHING! #rebar3 hex publish # Do not publish a dry run. if: ${{ inputs.dry_run == 'false' }} + diff --git a/.github/scripts/configure_rebar3.sh b/.github/scripts/configure_rebar3.sh old mode 100644 new mode 100755 diff --git a/.github/workflows/manual-publish.yml b/.github/workflows/manual-publish.yml index c00ec53..7f05b0a 100644 --- a/.github/workflows/manual-publish.yml +++ b/.github/workflows/manual-publish.yml @@ -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'