Skip to content

Add new resource sentry_release_deployment #265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2eb3d3d
Add new resource `sentry_release_deployment`
mvantellingen Jan 18, 2023
9c0aa0c
Update sentry/resource_sentry_release_deployment_test.go
mvantellingen Jan 24, 2023
af20a26
Make the fork releasable
mvantellingen Jun 14, 2023
23d67c4
Update README.md
mvantellingen Jun 14, 2023
9c5da47
Simplify reading sentry key
mvantellingen Jul 5, 2023
8af15a4
Update go-sentry to fix issue with project key reading
mvantellingen Jul 5, 2023
7aeee21
Synchronized project metafiles from labd/.github-private
demeyerthom Aug 11, 2023
3889e60
🔄 synced local '.github/' with remote 'projects/go/.github'
labd-project-manager[bot] Sep 1, 2023
c580bd1
🔄 synced local '.github/' with remote 'projects/go-terraform-provider…
labd-project-manager[bot] May 3, 2024
020492b
🔄 synced local '.github/' with remote 'projects/go-terraform-provider…
labd-project-manager[bot] May 7, 2024
fc078a5
🔄 created local '.changie.yaml' from remote 'projects/go-terraform-pr…
labd-project-manager[bot] May 7, 2024
3ee189a
feat: added changie and taskfile
demeyerthom May 7, 2024
f8f9c8e
Merge pull request #1 from labd/feat/changie-taskfile
demeyerthom May 7, 2024
13727ec
🔄 synced local '.github/' with remote 'projects/go-terraform-provider…
labd-project-manager[bot] May 10, 2024
4bbf7d7
🔄 synced local '.github/' with remote 'projects/go-terraform-provider…
labd-project-manager[bot] May 10, 2024
506455e
Update test.yaml
demeyerthom May 17, 2024
502d68d
Release v1.0.3
demeyerthom May 17, 2024
3c306b6
Update v1.0.2.md
demeyerthom May 17, 2024
b26baae
Update CHANGELOG.md
demeyerthom May 17, 2024
e9bc76f
Merge pull request #2 from labd/release/v1.0.3
demeyerthom May 17, 2024
9fba08e
Update release.yaml
demeyerthom May 17, 2024
1b28ec6
🔄 synced local '.github/' with remote 'projects/go-terraform-provider…
labd-project-manager[bot] Aug 2, 2024
11a93c7
🔄 synced local '.github/' with remote 'projects/go-terraform-provider…
labd-project-manager[bot] Mar 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update release.yaml
demeyerthom authored May 17, 2024
commit 9fba08e628c8d5c16d2c4435dee3377b95acbe3e
39 changes: 12 additions & 27 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,45 +1,30 @@
# This GitHub action can publish assets for release when a tag is created.
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
#
# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
# secret. If you would rather own your own GPG handling, please fork this action
# or use an alternative one for key handling.
#
# You will need to pass the `--batch` flag to `gpg` in your signing step
# in `goreleaser` to indicate this is being used in a non-interactive mode.
#
name: release
on:
push:
tags:
- "v*"
permissions:
contents: write
workflow_dispatch:

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Unshallow
run: git fetch --prune --unshallow
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-go@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
id: import_gpg
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
uses: paultyng/ghaction-import-gpg@v2.1.0
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4.2.0
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist