Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy #3647

Merged
merged 8 commits into from
Dec 17, 2020
Merged

Deploy #3647

Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Build with Ant
name: Ant

on: [push, pull_request]

Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,22 @@ jobs:
restore-keys: ${{ runner.os }}-m2
- name: Build
run: mvn ${{ env.maven_commands }}
deploy:
jburel marked this conversation as resolved.
Show resolved Hide resolved
if: contains('refs/heads/develop', github.ref)
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Repository
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: ome.snapshots
jburel marked this conversation as resolved.
Show resolved Hide resolved
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Deploy SNAPSHOT
run: mvn deploy
env:
MAVEN_USERNAME: ${{ secrets.CI_DEPLOY_USER }}
MAVEN_PASSWORD: ${{ secrets.CI_DEPLOY_PASS }}

18 changes: 0 additions & 18 deletions .travis.settings.xml

This file was deleted.

46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Bio-Formats

[![Build Status](https://travis-ci.org/ome/bioformats.png)](https://travis-ci.org/ome/bioformats)
[![Actions Status](https://github.com/ome/bioformats/workflows/Ant/badge.svg)](https://github.com/ome/bioformats/actions)
[![Actions Status](https://github.com/ome/bioformats/workflows/Maven/badge.svg)](https://github.com/ome/bioformats/actions)

Bio-Formats is a standalone Java library for reading and writing life sciences
image file formats. It is capable of parsing both pixels and metadata for a
Expand Down