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

chore: update the readme path in the docker ci #1246

Merged
merged 32 commits into from
Aug 3, 2024
Merged
Changes from 29 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
84a74e2
fix: remove package name from version tag for Docker tagging
ayushnau Jul 29, 2024
c0ae0c0
fix: remove the "
ayushnau Jul 29, 2024
75b6be9
Update breezy-falcons-hammer.md
derberg Jul 29, 2024
dff8fb4
Merge pull request #1 from asyncapi/master
ayushnau Jul 30, 2024
f5885e8
update: release.docker.yml file.
ayushnau Jul 30, 2024
760c047
delete unwanted changeset.
ayushnau Jul 30, 2024
4d92a96
updated the of nunjuks filter dependency import
ayushnau Jul 31, 2024
42a6693
Merge branch 'master' of github.com:asyncapi/generator
ayushnau Jul 31, 2024
0415531
Added the changeset .
ayushnau Jul 31, 2024
a9240d1
updated the package.lock.json.
ayushnau Jul 31, 2024
eb59676
removed the ignore dependency.
ayushnau Jul 31, 2024
a7bbc93
Merge branch 'master' of github.com:asyncapi/generator
ayushnau Jul 31, 2024
ad52f70
Merge branch 'master' of github.com:asyncapi/generator
ayushnau Jul 31, 2024
7f1d9a3
Added the correct path for the readme file.
ayushnau Jul 31, 2024
d1f1c2c
Update five-boats-prove.md
ayushnau Jul 31, 2024
49d4dd1
Delete .changeset/five-boats-prove.md
derberg Jul 31, 2024
8d6abe6
Merge branch 'master' into master
derberg Jul 31, 2024
1978d50
Added the README.md file for the generator.
ayushnau Aug 1, 2024
bde4689
Merge branch 'master' of github.com:ayushnau/generator
ayushnau Aug 1, 2024
57183fa
Added the changeset.
ayushnau Aug 1, 2024
d4fd48d
updated the readme for generator.
ayushnau Aug 1, 2024
23a1ac3
chore: removed the chagneset
ayushnau Aug 1, 2024
ce806fc
Update README.md
derberg Aug 1, 2024
761be0e
Merge branch 'master' into master
derberg Aug 1, 2024
7d183a7
Merge branch 'master' of github.com:asyncapi/generator
ayushnau Aug 1, 2024
c91f176
chore: added the checkout action for the release.
ayushnau Aug 2, 2024
025f41a
Merge pull request #2 from asyncapi/master
ayushnau Aug 2, 2024
98b8acf
Merge branch 'master' of github.com:ayushnau/generator
ayushnau Aug 2, 2024
9f3bffe
chore: updated the readme path.
ayushnau Aug 2, 2024
8286130
Update release-docker.yml
ayushnau Aug 3, 2024
2713fcf
Update release-docker.yml
ayushnau Aug 3, 2024
e0ed038
Update release-docker.yml
derberg Aug 3, 2024
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
5 changes: 4 additions & 1 deletion .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
name: Docker build and push
runs-on: ubuntu-latest
steps:
- name: Check out the repository
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make sure it runs only before the step related to readme and use the latest checkout action

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done please check.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now you do checkout twice, and still with old version of the action

uses: actions/checkout@v2

- name: Get version without v character
id: version
run: |
Expand Down Expand Up @@ -54,5 +57,5 @@ jobs:
user: ${{ secrets.DOCKER_USERNAME }}
pass: ${{ secrets.DOCKER_PASSWORD }}
slug: asyncapi/generator
readme: ../../README.md
readme: ./apps/generator/README.md
description: Use your AsyncAPI definition to generate literally anything. Markdown documentation, Node.js code, HTML documentation, anything!
Loading