Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change needs for update-new-release job #12

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/fastlane-release-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
git tag ${{ steps.check-upstream-tags.outputs.UPSTREAM_TAG }}
git push origin ${{ steps.check-upstream-tags.outputs.UPSTREAM_TAG }}

push_to_dockerhub:
push-to-dockerhub:
name: DockerHub build and push
runs-on: ubuntu-latest
needs: [release-new-bor-version]
Expand Down Expand Up @@ -101,13 +101,13 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}

update_new_release:
update-new-release:
# packager Action on master branch will build and publish a new release
# the new release will not be tagged as latest and will be marked as pre-release
# this step is required to tag as latest and mark as latest release
name: Update new release
runs-on: ubuntu-latest
needs: [release-new-bor-version]
needs: [push-to-dockerhub]
steps:
- name: Apply patch
run: |
Expand Down
Loading