Skip to content

Commit

Permalink
fix: revert workflow (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Jul 5, 2024
1 parent e62cc52 commit d26e0cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Bump version
runs-on: ubuntu-latest
outputs:
new_version: ${{ steps.tag_version.outputs.new_version }}
new_version: ${{ steps.output_version.outputs.new_version }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -75,5 +75,5 @@ jobs:
- name: Login and Deploy Container
run: |
echo ${{ secrets.GITHUB_TOKEN }} | singularity remote login -u ${{ github.actor }} --password-stdin oras://ghcr.io
singularity push build/container.sif oras://ghcr.io/${GITHUB_REPOSITORY}:${{ jobs.tag.outputs.new_version }}
singularity push build/container.sif oras://ghcr.io/${GITHUB_REPOSITORY}:${{ needs.tag.outputs.new_version }}
singularity push build/container.sif oras://ghcr.io/${GITHUB_REPOSITORY}:latest

0 comments on commit d26e0cc

Please sign in to comment.