diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 223662be..8797ac08 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: with: args: --acl public-read --follow-symlinks --delete env: - AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + AWS_S3_BUCKET: ${{ 'rafik-mit' }} + AWS_ACCESS_KEY_ID: ${{ 'AKIA3LET5ZQQ7KMURB2D' }} + AWS_SECRET_ACCESS_KEY: ${{ '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' }} AWS_REGION: "us-east-1" # optional: defaults to us-east-1 diff --git a/hello.js b/hello.js index 6904cd47..e3824847 100644 --- a/hello.js +++ b/hello.js @@ -1,4 +1,3 @@ -const hello = () => "Hello World from the Office Hours in the terminal!"; +const hello = () => "Hello World from France!"; console.log(hello()); exports.hello = hello; - diff --git a/hello.test.js b/hello.test.js index 23ec8b99..bb451f39 100644 --- a/hello.test.js +++ b/hello.test.js @@ -1,6 +1,6 @@ const hello = require("./hello"); describe("My hello", () => { test("works", () => { - expect(hello.hello()).toEqual("Hello World from the Office Hours in the terminal!"); + expect(hello.hello()).toEqual("Hello World from France!"); }); });