Skip to content

Commit b9cdd5e

Browse files
committed
Ajuste | Github Workflow
1 parent a4fbb7a commit b9cdd5e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/dotnet-desktop.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: .NET Core CI
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "main" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "main" ]
88

99
jobs:
1010
build:
@@ -44,6 +44,5 @@ jobs:
4444
- name: Upload build artifacts
4545
uses: actions/upload-artifact@v4
4646
with:
47-
name: Published EXE
47+
name: Published_EXE_${{ github.run_id }}
4848
path: ${{ env.Publish_Directory }}
49-

ExplorandoMarte/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ public static void Main(string[] args)
9898
'R' => new TurnRightCommand(rover),
9999
'M' => new MoveCommand(rover),
100100
_ => throw new ArgumentException("Instrução inválida. As instruções válidas são: L, R, M.")
101-
};
102-
101+
};
103102

104103
invoker.AddCommand(command);
105104

0 commit comments

Comments
 (0)