Skip to content

Commit

Permalink
bump to liga 0.3.0.dev2 (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
da-tubi committed Mar 29, 2023
1 parent 7351742 commit 34d29b1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,18 @@ jobs:
run: mill 'liga[2.12].assembly'
env:
SPARK_VERSION: ${{ matrix.spark-version }}
- name: Write release version
run: |
VERSION=${GITHUB_REF_NAME#v}
VERSION=${VERSION//\//}
echo Version: $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
env:
REF_NAME: ${{ github.ref_name }}
- name: Rename out.jar to liga-sparkXYZ-assembly_2.12-version.jar
run: cp ${{ github.workspace }}/out/liga/2.12/assembly.dest/out.jar /tmp/liga-spark"${SPARK_VERSION//./}"-assembly_2.12-${REF_NAME//\//}.jar
run: cp ${{ github.workspace }}/out/liga/2.12/assembly.dest/out.jar /tmp/liga-spark"${SPARK_VERSION//./}"-assembly_2.12-${VERSION}.jar
env:
SPARK_VERSION: ${{ matrix.spark-version }}
REF_NAME: ${{ github.ref_name }}
- name: Upload assembly
uses: actions/upload-artifact@v3
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
Expand Down
2 changes: 1 addition & 1 deletion BUILD.pants
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python_distribution(
],
provides=python_artifact(
name="liga",
version="0.3.0.dev1",
version="0.3.0.dev2",
),
)

Expand Down
2 changes: 1 addition & 1 deletion python/liga/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version = "0.3.0.dev1"
version = "0.3.0.dev2"

0 comments on commit 34d29b1

Please sign in to comment.