Skip to content

Commit

Permalink
Merge branch 'main' of github.com:scicloj/noj
Browse files Browse the repository at this point in the history
  • Loading branch information
daslu committed Jan 6, 2025
2 parents 8439060 + 089636a commit 459924d
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
push:
branches:
- master
tags:
- "*"

jobs:
clojars:
runs-on: ubuntu-latest

steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v2

- uses: jlesquembre/[email protected]
env:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}
31 changes: 31 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.scicloj</groupId>
<artifactId>noj</artifactId>
<version>LATEST</version>
<name>noj</name>
<description>A Clojure framework for data science</description>
<url>https://github.com/scicloj/metamorph.ml</url>

<licenses>
<license>
<name>Eclipse Public License</name>
<url>https://www.eclipse.org/legal/epl-2.0/</url>
</license>
</licenses>

<developers>
<developer>
<name>Daniel Slutsky</name>
</developer>
</developers>

<scm>
<url>https://github.com/$USER/$PROJECT</url>
<connection>scm:git:git://github.com/$USER/$PROJECT.git</connection>
<developerConnection>scm:git:ssh://[email protected]/$USER/$PROJECT.git</developerConnection>
<tag>HEAD</tag>
</scm>

</project>

0 comments on commit 459924d

Please sign in to comment.