Skip to content
This repository has been archived by the owner on Feb 19, 2023. It is now read-only.

Commit

Permalink
fixing versions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel.schroeder committed Jan 11, 2020
1 parent 864eb51 commit c954e6a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fetch-depth: 1

- name: Publish packages
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
VERSION: ${{ steps.get_version.outputs.VERSION }}
BUILD_SOURCE: true
Expand Down Expand Up @@ -74,33 +74,33 @@ jobs:
fetch-depth: 1

- name: Build source
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
VERSION: ${{ steps.get_version.outputs.VERSION }}
BUILD_SOURCE: true

- name: Build packages
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
BUILD_PACKAGES: true

- name: Publish to npm
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish to PyPI
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

- name: Publish to NuGet
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}

- name: Publish to Maven GitHub
uses: udondan/jsii-publish@v0.6.3
uses: udondan/jsii-publish@v0.6.4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ GITHUB_REPOSITORY }}
Expand All @@ -121,7 +121,7 @@ docker run -it \
--env GITHUB_USER="${OWNER}" \
--env GITHUB_TOKEN \
--env GITHUB_REPOSITORY="${OWNER}/${REPOSITORY}" \
udondan/jsii-publish:0.6.3
udondan/jsii-publish:0.6.4
```

The package code can be mounted to any location in the container. Just make sure you set the workdir to the same value. In the example above I use `/workdir`.
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ branding:
color: orange
runs:
using: docker
image: docker://udondan/jsii-publish:0.6.3
image: docker://udondan/jsii-publish:0.6.4
inputs:
BUILD_SOURCE:
description: Indicates if the source should be build (tsc)
Expand Down Expand Up @@ -38,4 +38,4 @@ inputs:
required: false
DEBUG:
description: Enables debug modes (currently only mvn)
required: false
default: false

0 comments on commit c954e6a

Please sign in to comment.