Update Datomic Pro to v1.0.7075. #23
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
name: Datomic Pro CI/CD | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Push container image to ghcr.io | |
run: make push | |
env: | |
GITHUB_USERNAME: ${{ github.actor }} | |
GITHUB_PASSWORD: ${{ github.token }} | |
permissions: | |
packages: write | |
deploy: | |
needs: [push] | |
environment: production | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Deploy container image to Fly.io | |
run: make deploy | |
env: | |
FLY_ACCESS_TOKEN: ${{ secrets.FLY_ACCESS_TOKEN }} | |
FLY_ORGANIZATION: ${{ secrets.FLY_ORGANIZATION }} | |
SLUG: ${{ secrets.SLUG }} |