We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ab7f3 commit 34c11e7Copy full SHA for 34c11e7
.github/workflows/release.yml
@@ -11,13 +11,13 @@ jobs:
11
- uses: actions/checkout@v4
12
13
- name: compile and run
14
- run: g++ hello_world.cpp -o hello_world_mac
+ run: g++ hello_world.cpp -o hello_world_linux
15
16
- name: Create Release
17
env:
18
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
run: >-
20
gh release create ${{ github.ref_name }}
21
- "hello_world_mac"
+ "hello_world_linux"
22
--generate-notes
23
--title "Version ${{ github.ref_name }}"
hello_world.cpp
@@ -5,9 +5,9 @@ int main() {
5
// int x;
6
// cout << x << endl;
7
8
- int *p = nullptr;
+// int *p = nullptr;
9
10
- cout << *p << endl;
+// cout << *p << endl;
cout << "Hello World" << endl;
0 commit comments