mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Switch back to using Github containers to fix changelog commit (#35)
This commit is contained in:
parent
e7a0e8b8e9
commit
1c72407e34
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
@ -36,9 +36,14 @@ jobs:
|
|||||||
name: Test
|
name: Test
|
||||||
needs: gradleValidation
|
needs: gradleValidation
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: gradle:jdk8
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
|
||||||
# Check out current repository
|
# Check out current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -71,13 +76,18 @@ jobs:
|
|||||||
name: Build
|
name: Build
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: gradle:jdk8
|
|
||||||
outputs:
|
outputs:
|
||||||
name: ${{ steps.properties.outputs.name }}
|
name: ${{ steps.properties.outputs.name }}
|
||||||
version: ${{ steps.properties.outputs.version }}
|
version: ${{ steps.properties.outputs.version }}
|
||||||
changelog: ${{ steps.properties.outputs.changelog }}
|
changelog: ${{ steps.properties.outputs.changelog }}
|
||||||
artifact: ${{ steps.properties.outputs.artifact }}
|
artifact: ${{ steps.properties.outputs.artifact }}
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
|
||||||
# Check out current repository
|
# Check out current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
|
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@ -12,9 +12,14 @@ jobs:
|
|||||||
release:
|
release:
|
||||||
name: Publish Plugin
|
name: Publish Plugin
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: gradle:jdk8
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
|
||||||
# Check out current repository
|
# Check out current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -32,9 +37,14 @@ jobs:
|
|||||||
name: Update Changelog
|
name: Update Changelog
|
||||||
needs: release
|
needs: release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: gradle:jdk8
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
|
||||||
# Check out current repository
|
# Check out current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
Loading…
Reference in New Issue
Block a user