From 1c17ea43fae65fe6afbd7f7bcbbe21a18b862ab9 Mon Sep 17 00:00:00 2001 From: pavelzw <29506042+pavelzw@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:44:45 +0000 Subject: [PATCH 1/4] Bump rattler-build version to v0.10.0 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b95329f..a9fd2c6 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: rattler-build-version: description: Version of rattler-build to use required: false - default: 'v0.9.0' + default: 'v0.10.0' recipe-path: description: Path to the recipe.yaml file required: true From 549962bffcc7c63e7011f6ea12bfe0916590a45d Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Tue, 13 Feb 2024 21:45:54 +0100 Subject: [PATCH 2/4] Update project.toml --- project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.toml b/project.toml index 9f7a875..1663d82 100644 --- a/project.toml +++ b/project.toml @@ -1 +1 @@ -version = "0.1.0" +version = "0.1.1" From 3abfc573d5e5c943742853a6546e57d44c940efe Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Tue, 13 Feb 2024 21:46:28 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0eeb2ec..84d09b9 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.1.0 + uses: prefix-dev/rattler-build-action@v0.1.1 ``` > [!WARNING] -> Since rattler-build is still experimental and the API can change in minor versions, please pin this action to its minor version, i.e., `prefix-dev/rattler-build-action@v0.1.0`. +> Since rattler-build is still experimental and the API can change in minor versions, please pin this action to its minor version, i.e., `prefix-dev/rattler-build-action@v0.1.1`. > [!TIP] > Please make sure to have private repositories enabled for dependabot, otherwise dependabot will fail silently for your repository. > @@ -81,7 +81,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.1.0 + uses: prefix-dev/rattler-build-action@v0.1.1 with: # needs to be unique for each matrix entry artifact-name: package-${{ matrix.target-platform }} @@ -98,7 +98,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.1.0 + uses: prefix-dev/rattler-build-action@v0.1.1 - run: | for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do echo "Uploading ${pkg}" @@ -128,7 +128,7 @@ jobs: echo '{"my.quetz.server": {"CondaToken": "${{ secrets.QUETZ_API_KEY }}"}}' > "$RATTLER_AUTH_FILE" echo "RATTLER_AUTH_FILE=$RATTLER_AUTH_FILE" >> "$GITHUB_ENV" - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.1.0 + uses: prefix-dev/rattler-build-action@v0.1.1 with: build-args: -c conda-forge -c https://my.quetz.server/get/my-channel ``` From fa0bc5bd982841a68911a9261812ae53de00e6ce Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Tue, 13 Feb 2024 21:47:15 +0100 Subject: [PATCH 4/4] Update bump-versions.yml --- .github/workflows/bump-versions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump-versions.yml b/.github/workflows/bump-versions.yml index f1b0865..b888deb 100644 --- a/.github/workflows/bump-versions.yml +++ b/.github/workflows/bump-versions.yml @@ -2,7 +2,7 @@ name: Bump versions on: workflow_dispatch: schedule: - - cron: "0 6 * * *" + - cron: 0 6 * * * jobs: bump: @@ -31,6 +31,6 @@ jobs: delete-branch: true commit-message: Bump ${{ matrix.tool }} version to ${{ steps.bump.outputs.new-version }} branch: bump-${{ matrix.tool }}-${{ steps.bump.outputs.new-version }} - labels: dependencies,breaking + labels: dependencies,enhancement body: | - [ ] Update version in [project.toml](https://github.com/prefix-dev/rattler-build-action/blob/bump-${{ matrix.tool }}-${{ steps.bump.outputs.new-version }}/project.toml)