Skip to content

Commit

Permalink
Add Github action for auto-deploying master
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmacdonald committed Feb 20, 2024
1 parent bce932f commit 23eaeaf
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
# name: Deploy
#
# on:
# push:
# branches:
# - master
#
# jobs:
# deploy:
# runs-on: ubuntu-20.04
# environment: Deployment
# steps:
# - uses: actions/[email protected]
# with:
# fetch-depth: 0
# - name: Prepare JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: 17
# distribution: 'temurin'
# - name: Setup Clojure
# uses: DeLaGuardo/[email protected]
# with:
# cli: 1.11.1.1413
# - name: Restore cache
# uses: actions/cache@v3
# with:
# path: |
# ~/.m2/repository
# ~/.gitlibs
# ~/.deps.clj
# key: v1-${{ hashFiles('./deps.edn') }}-deploy
# restore-keys: |
# v1-${{ hashFiles('./deps.edn') }}-
# v1-
# - name: Build Macaw
# run: clojure -T:build build
# env:
# GITHUB_SHA: ${{ env.GITHUB_SHA }}
# - name: Deploy Macaw
# run: clojure -T:build deploy
# env:
# CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
# CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}
name: Deploy

on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-20.04
environment: Deployment
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Prepare JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1413
- name: Restore cache
uses: actions/cache@v3
with:
path: |
~/.m2/repository
~/.gitlibs
~/.deps.clj
key: v1-${{ hashFiles('./deps.edn') }}-deploy
restore-keys: |
v1-${{ hashFiles('./deps.edn') }}-
v1-
- name: Build Macaw
run: clojure -T:build jar
env:
GITHUB_SHA: ${{ env.GITHUB_SHA }}
- name: Deploy Macaw
run: clojure -T:build deploy
env:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}

0 comments on commit 23eaeaf

Please sign in to comment.