Skip to content

Commit 581af05

Browse files
Merge pull request #77 from devops-infra/bugfix/set-e
Remove `set -e`
2 parents 65e8120 + b02fbc6 commit 581af05

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
phony: help
33

44
# Release tag for the action
5-
VERSION := v0.3.4
5+
VERSION := v0.3.5
66

77
# GitHub Actions bogus variables
88
GITHUB_REF ?= refs/heads/null

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Features:
3333

3434
```yaml
3535
- name: Fail on malformatted files
36-
uses: devops-infra/action-format-hcl@v0.3.4
36+
uses: devops-infra/action-format-hcl@v0.3.5
3737
with:
3838
list: false
3939
write: true
@@ -69,7 +69,7 @@ jobs:
6969
- name: Checkout
7070
uses: actions/checkout@v2
7171
- name: Fail on malformatted files
72-
uses: devops-infra/action-format-hcl@v0.3.4
72+
uses: devops-infra/action-format-hcl@v0.3.5
7373
with:
7474
check: true
7575
```
@@ -86,7 +86,7 @@ jobs:
8686
- name: Checkout
8787
uses: actions/checkout@v2
8888
- name: Format HCL files
89-
uses: devops-infra/action-format-hcl@v0.3.4
89+
uses: devops-infra/action-format-hcl@v0.3.5
9090
- name: Commit changes to repo
9191
uses: devops-infra/action-commit-push@master
9292
with:

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ outputs:
3535
description: List of formatted files
3636
runs:
3737
using: docker
38-
image: docker://devopsinfra/action-format-hcl:v0.3.4
38+
image: docker://devopsinfra/action-format-hcl:v0.3.5
3939
branding:
4040
color: purple
4141
icon: upload-cloud

entrypoint.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -e
4-
53
# Return code
64
RET_CODE=0
75

0 commit comments

Comments
 (0)