diff --git a/.github/workflows/build_and_release.yml b/.github/workflows/build_and_release.yml index 5d80139..c51f2b1 100644 --- a/.github/workflows/build_and_release.yml +++ b/.github/workflows/build_and_release.yml @@ -64,6 +64,8 @@ jobs: release: runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') + permissions: + contents: write needs: - build steps: diff --git a/constants.ts b/constants.ts index b7fcd22..c03fda3 100644 --- a/constants.ts +++ b/constants.ts @@ -1,4 +1,4 @@ -export const version = "0.3.1"; +export const version = "0.3.2"; export const homePath = `${Deno.env.get("HOME")}/.drenv`; export const versionsPath = `${homePath}/versions`; export const binPath = `${homePath}/bin`;