Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Oct 18, 2023
2 parents 5dda15f + f2a79c0 commit fb92fa8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:
deploy:
name: Deploy to Workers
runs-on: ubuntu-latest
environment:
name: ${{ github.event.release.prerelease == 'false' && 'production' || 'development' }}
environment: ${{ github.event.release.prerelease && 'development' || 'production' }}
permissions:
contents: write
pull-requests: write
Expand Down Expand Up @@ -51,8 +50,8 @@ jobs:
with:
accountId: ${{ secrets.CF_ACCOUNT_ID }}
apiToken: ${{ secrets.CF_API_TOKEN }}
environment: ${{ github.event.release.prerelease == 'false' && '' || 'dev' }}
command: deploy ${{ github.event.release.prerelease == 'false' && '' || '--env dev' }}
environment: ${{ github.event.release.prerelease && 'dev' || '' }}
command: deploy ${{ github.event.release.prerelease && '-env dev' || '' }}
secrets: |
LIL_NOUNS_DISCORD_WEBHOOK_URL
LIL_NOUNS_WARP_CAST_TOKEN
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.0.1] - 2023-10-18

### Miscellaneous Tasks

- Simplify environment conditional in `deploy.yml`

## [1.0.0] - 2023-10-18

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lilnouns-bots"
version = "1.0.0"
version = "1.0.1"
authors = ["Milad Nekofar <milad@nekofar.com>"]
edition = "2021"
description = "Our bots are designed to keep the Lil Nouns DAO community informed and engaged."
Expand Down

0 comments on commit fb92fa8

Please sign in to comment.