rm DEPLOYED_AT in plural-www deployment (#1319) #261
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: CD / Plural | |
on: | |
push: | |
branches: | |
- "master" | |
paths: | |
- "plural/**" | |
jobs: | |
deploy: | |
name: Push Plural artifact to Plural | |
runs-on: ubuntu-20.04 | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hashicorp/setup-terraform@v2 | |
- uses: azure/setup-helm@v3 | |
with: | |
version: latest | |
- name: installing plural | |
uses: pluralsh/setup-plural@v0.1.9 | |
with: | |
email: gh-actions@plural.sh | |
- run: make deploy | |
- uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
fields: workflow,job,repo,message,commit,author | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} # required | |
if: always() |