Skip to content

Commit

Permalink
Prepare for 0.3.1-rc.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhelloworld committed Oct 6, 2021
1 parent 3d8b19f commit fdff3c0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
distribution: 'adopt'
cache: 'maven'
- name: Set IDRIS2_PREFIX
run: echo "IDRIS2_PREFIX=$HOME/bin/idris2-0.3.0-SNAPSHOT/lib" >> $GITHUB_ENV
run: echo "IDRIS2_PREFIX=$HOME/bin/idris2-0.3.0/lib" >> $GITHUB_ENV
- name: Set PREFIX
run: echo "PREFIX=$IDRIS2_PREFIX" >> $GITHUB_ENV
- name: Download previous version
run: |
wget https://github.com/mmhelloworld/idris-jvm/releases/download/v0.3.0-rc.1/idris2-0.3.0-SNAPSHOT.zip
unzip idris2-0.3.0-SNAPSHOT.zip -d $HOME/bin
echo "::add-path::$HOME/bin/idris2-0.3.0-SNAPSHOT/bin"
wget https://github.com/mmhelloworld/idris-jvm/releases/download/v0.3.0/idris2-0.3.0.zip
unzip idris2-0.3.0.zip -d $HOME/bin
echo "::add-path::$HOME/bin/idris2-0.3.0/bin"
- name: Build
run: mvn --batch-mode install -Dinteractive= -Didris.tests="only=jvm"
8 changes: 4 additions & 4 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
run: echo "PREFIX=$IDRIS2_PREFIX" >> $GITHUB_ENV
- name: Download previous version
run: |
wget https://github.com/mmhelloworld/idris-jvm/releases/download/v0.3.0-rc.1/idris2-0.3.0-SNAPSHOT.zip
unzip idris2-0.3.0-SNAPSHOT.zip -d $HOME/bin
echo "::add-path::$HOME/bin/idris2-0.3.0-SNAPSHOT/bin"
wget https://github.com/mmhelloworld/idris-jvm/releases/download/v0.3.0/idris2-0.3.0.zip
unzip idris2-0.3.0.zip -d $HOME/bin
echo "::add-path::$HOME/bin/idris2-0.3.0/bin"
- name: Build
run: mvn --batch-mode install -DskipTests

Expand All @@ -42,4 +42,4 @@ jobs:
prerelease: true
title: "Development Build"
files: |
idris-jvm-compiler/target/idris2-0.3.0.zip
idris-jvm-compiler/target/idris2-0.3.1-SNAPSHOT.zip
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@ jobs:
distribution: 'adopt'
cache: 'maven'
- name: Set IDRIS2_PREFIX
run: echo "IDRIS2_PREFIX=$HOME/bin/idris2-0.3.0-SNAPSHOT/lib" >> $GITHUB_ENV
run: echo "IDRIS2_PREFIX=$HOME/bin/idris2-0.3.0/lib" >> $GITHUB_ENV
- name: Set PREFIX
run: echo "PREFIX=$IDRIS2_PREFIX" >> $GITHUB_ENV
- name: Download previous version
run: |
wget https://github.com/mmhelloworld/idris-jvm/releases/download/v0.3.0-rc.1/idris2-0.3.0-SNAPSHOT.zip
unzip idris2-0.3.0-SNAPSHOT.zip -d $HOME/bin
echo "::add-path::$HOME/bin/idris2-0.3.0-SNAPSHOT/bin"
wget https://github.com/mmhelloworld/idris-jvm/releases/download/v0.3.0/idris2-0.3.0.zip
unzip idris2-0.3.0.zip -d $HOME/bin
echo "::add-path::$HOME/bin/idris2-0.3.0/bin"
- name: Build
run: mvn --batch-mode install -DskipTests

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
title: "Release 0.3.0"
title: "Release 0.3.1-rc.2"
files: |
idris-jvm-compiler/target/idris2-0.3.0.zip
idris-jvm-compiler/target/idris2-0.3.1-SNAPSHOT.zip

0 comments on commit fdff3c0

Please sign in to comment.