diff --git a/.github/actions/update-version/action.yaml b/.github/actions/update-version/action.yaml index a2432eb..b99dd82 100644 --- a/.github/actions/update-version/action.yaml +++ b/.github/actions/update-version/action.yaml @@ -39,19 +39,22 @@ runs: run: | git config --global user.name "github-actions[bot]" git config --global user.email "github-actions[bot]@users.noreply.github.com" + - name: "All" + shell: bash + run: git branch -a + + - name: "LS" + shell: bash + run: ls -lag - name: "Checkout" shell: bash - run: | - git checkout master + run: git checkout master - name: "Add" shell: bash - run: | - git add galaxy.yml + run: git add galaxy.yml - name: "Commit" shell: bash - run: | - git commit -m "Update galaxy.yaml version to ${{ env.LATEST_VERSION }}" -# git push --dry-run origin master + run: git commit -m "Update galaxy.yaml version to ${{ env.LATEST_VERSION }}" diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index be46171..012115c 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -23,6 +23,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set environment variables uses: ./.github/actions/set-environment-variables - name: Update version