Skip to content

Commit

Permalink
Update publish code
Browse files Browse the repository at this point in the history
  • Loading branch information
aghozlane committed Mar 5, 2024
1 parent 54da840 commit 65082d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/publish_meteor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,21 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
tags: aghozlane/meteor:latest
secrets: |
"github_token=${{ secrets.DOCKER_TOKEN }}"
build_conda:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -57,7 +55,7 @@ jobs:
uses: abatilo/actions-poetry@v2
- name: Build and publish to PyPI
run: |
poetry config http-basic.pypi __token__ ${{ secrets.PYPI_PASS }}
poetry config http-basic.pypi __token__ ${{ secrets.PYPI_TOKEN }}
poetry build -C meteor
poetry publish -C meteor
Expand Down
2 changes: 1 addition & 1 deletion conda_recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "meteor" %}
{% set version = "3.4" %}
{% set version = "2.0.0" %}

package:
name: {{ name }}
Expand Down

0 comments on commit 65082d2

Please sign in to comment.