From 26e2c1a482b56c7b67f0689f766d87b5d89e2644 Mon Sep 17 00:00:00 2001 From: pavelzw <29506042+pavelzw@users.noreply.github.com> Date: Fri, 27 Sep 2024 06:00:41 +0000 Subject: [PATCH 1/4] Bump rattler-build version to v0.22.0 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2831d95..1164b81 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: rattler-build-version: description: Version of rattler-build to use required: false - default: 'v0.20.0' + default: 'v0.22.0' recipe-path: description: Path to the recipe.yaml file required: true From e6698b8f169b38791b3b15fe8fd3f5f58fc0d5b2 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 27 Sep 2024 08:11:26 +0200 Subject: [PATCH 2/4] project.toml --- project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.toml b/project.toml index 0077b38..259f2ed 100644 --- a/project.toml +++ b/project.toml @@ -1 +1 @@ -version = "0.2.14" +version = "0.2.15" From d8ea0087e2e223432b90cb1e8200cafdca7a266b Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 27 Sep 2024 08:13:49 +0200 Subject: [PATCH 3/4] README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 99ccba6..8a67ec1 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.2.14 + uses: prefix-dev/rattler-build-action@v0.2.15 ``` > [!WARNING] @@ -100,7 +100,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.2.14 + uses: prefix-dev/rattler-build-action@v0.2.15 with: # needs to be unique for each matrix entry artifact-name: package-${{ matrix.target-platform }} @@ -117,7 +117,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.2.14 + uses: prefix-dev/rattler-build-action@v0.2.15 - run: | for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do echo "Uploading ${pkg}" @@ -139,7 +139,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build conda package - uses: prefix-dev/rattler-build-action@v0.2.14 + uses: prefix-dev/rattler-build-action@v0.2.15 - run: | for pkg in $(find output -type f \( -name "*.conda" -o -name "*.tar.bz2" \) ); do echo "Uploading ${pkg}" @@ -167,7 +167,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.2.14 + uses: prefix-dev/rattler-build-action@v0.2.15 with: build-args: -c conda-forge -c https://my.quetz.server/get/my-channel ``` From 8a9aa40fff4bb25ee1f9503dfc142a824b71f1a5 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Fri, 27 Sep 2024 08:15:16 +0200 Subject: [PATCH 4/4] README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a67ec1..280d7a4 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ jobs: ``` > [!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.2.14`. +> 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.2.15`. > [!TIP] > You can use dependabot to automatically update the version of `rattler-build-action`. Add the following to your `.github/dependabot.yml`: