Skip to content

Commit

Permalink
[wip] test deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
kimo-k committed Apr 24, 2024
1 parent 8958cd2 commit 64cdc44
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/continuous-deployment-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
CLOJARS_TOKEN: ${{ secrets.CLOJARS_TOKEN }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1

- name: Setup java
uses: actions/setup-java@v3
Expand All @@ -91,29 +91,29 @@ jobs:
restore-keys: cljdeps-

- run: lein release
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_TOKEN: ${{ secrets.CLOJARS_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# env:
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
# CLOJARS_TOKEN: ${{ secrets.CLOJARS_TOKEN }}
# GITHUB_USERNAME: ${{ github.actor }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# This creates a 'GitHub Release' from the tag and includes link to CHANGELOG.md at the current
# git ref. We do not use draft or prerelease features as we always want
# the latest release to show in the right hand column of the project page regardless
# of if it is a stable release.
- name: Create GitHub Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
[Changelog](https://github.com/day8/re-com/blob/master/CHANGELOG.md)
draft: false
prerelease: false
# - name: Create GitHub Release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: ${{ github.ref }}
# body: |
# [Changelog](https://github.com/day8/re-com/blob/master/CHANGELOG.md)
# draft: false
# prerelease: false

- name: Slack notification
uses: homoluctus/[email protected]
Expand Down

0 comments on commit 64cdc44

Please sign in to comment.