Skip to content

Commit 31c95e7

Browse files
committed
removing permision
1 parent 02203fe commit 31c95e7

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/full-deployment.yaml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
build:
1919
name: Building a release and version file
2020
runs-on: ubuntu-20.04
21-
permissions:
22-
contents: write
2321
steps:
2422
- uses: actions/checkout@v4
2523
- name: Setup BEAM
@@ -30,11 +28,11 @@ jobs:
3028

3129
- name: Update project mix version
3230
run: |
33-
sed -i "s/.*version:.*/ version: \"10.10.10\",/" mix.exs
31+
sed -i "s/.*version:.*/ version: \"10.10.11\",/" mix.exs
3432
3533
- name: Create Release file version
3634
run: |
37-
echo "{\"version\":\"10.10.10\",\"hash\":\"${GITHUB_SHA}\"}" | jq > current.json
35+
echo "{\"version\":\"10.10.11\",\"hash\":\"${GITHUB_SHA}\"}" | jq > current.json
3836
3937
- name: Install Elixir dependencies
4038
run: mix do deps.get, compile
@@ -49,7 +47,7 @@ jobs:
4947
uses: actions/upload-artifact@v4
5048
with:
5149
name: release-file
52-
path: _build/prod/calori-10.10.10.tar.gz
50+
path: _build/prod/calori-10.10.11.tar.gz
5351
retention-days: 5
5452

5553
- name: 'Upload version file artifact'
@@ -82,8 +80,8 @@ jobs:
8280
# aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
8381
# aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
8482
# aws_region: "sa-east-1"
85-
# source: "calori-10.10.10.tar.gz"
86-
# dest: "s3://calori-${{ secrets.CLOUD_ENV_NAME }}-distribution/dist/calori/calori-10.10.10.tar.gz"
83+
# source: "calori-10.10.11.tar.gz"
84+
# dest: "s3://calori-${{ secrets.CLOUD_ENV_NAME }}-distribution/dist/calori/calori-10.10.11.tar.gz"
8785

8886
# - name: Copy a version file to the s3 version folder
8987
# uses: prewk/s3-cp-action@v2
@@ -121,7 +119,7 @@ jobs:
121119
- id: 'upload-release-file'
122120
uses: 'google-github-actions/upload-cloud-storage@v2'
123121
with:
124-
path: 'calori-10.10.10.tar.gz'
122+
path: 'calori-10.10.11.tar.gz'
125123
destination: "calori-${{ secrets.CLOUD_ENV_NAME }}-distribution/dist/calori"
126124
process_gcloudignore: false
127125

0 commit comments

Comments
 (0)