-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from embulk/publish-from-github-actions
Publish from GitHub Actions with updates
- Loading branch information
Showing
12 changed files
with
316 additions
and
174 deletions.
There are no files selected for viewing
24 changes: 13 additions & 11 deletions
24
.github/workflows/build.yml → .github/workflows/check.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Publish | ||
on: | ||
push: | ||
tags: | ||
- "v0.*" | ||
jobs: | ||
publish: | ||
environment: | ||
name: maven-central-and-ruby-gems | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: true | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up OpenJDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 8 | ||
distribution: "temurin" | ||
cache: "gradle" | ||
- name: Publish | ||
run: | | ||
mkdir -p $HOME/.gem | ||
touch $HOME/.gem/credentials | ||
chmod 0600 $HOME/.gem/credentials | ||
printf -- "---\n:rubygems_api_key: ${RUBYGEMS_API_KEY}\n" > $HOME/.gem/credentials | ||
./gradlew --stacktrace publishMavenPublicationToMavenCentralRepository gemPush | ||
env: | ||
ORG_GRADLE_PROJECT_ossrhUsername: embulk | ||
ORG_GRADLE_PROJECT_ossrhPassword: ${{ secrets.OSSRH_PASSWORD }} | ||
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_PRIVATE_KEY_ARMOR }} | ||
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }} | ||
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
embulk-output-elasticsearch | ||
Copyright 2015 The Embulk project | ||
|
||
This product includes software developed at | ||
The Embulk project (https://www.embulk.org/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This is a Gradle generated file for dependency locking. | ||
# Manual edits can break the build and are not advised. | ||
# This file is expected to be part of source control. | ||
com.fasterxml.jackson.core:jackson-annotations:2.6.7=compileClasspath,runtimeClasspath | ||
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath | ||
com.fasterxml.jackson.core:jackson-databind:2.6.7=compileClasspath,runtimeClasspath | ||
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=compileClasspath,runtimeClasspath | ||
javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath | ||
org.eclipse.jetty:jetty-client:9.2.14.v20151106=compileClasspath,runtimeClasspath | ||
org.eclipse.jetty:jetty-http:9.2.14.v20151106=compileClasspath,runtimeClasspath | ||
org.eclipse.jetty:jetty-io:9.2.14.v20151106=compileClasspath,runtimeClasspath | ||
org.eclipse.jetty:jetty-util:9.2.14.v20151106=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-api:0.10.28=compileClasspath | ||
org.embulk:embulk-base-restclient:0.10.1=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-spi:0.10.28=compileClasspath | ||
org.embulk:embulk-util-config:0.3.2=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-util-json:0.1.1=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-util-retryhelper-jetty92:0.8.2=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-util-retryhelper:0.8.2=compileClasspath,runtimeClasspath | ||
org.embulk:embulk-util-rubytime:0.3.2=runtimeClasspath | ||
org.embulk:embulk-util-timestamp:0.2.1=compileClasspath,runtimeClasspath | ||
org.msgpack:msgpack-core:0.8.11=compileClasspath | ||
org.slf4j:slf4j-api:1.7.30=compileClasspath | ||
empty= |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.