Netlify Does Not Include Videos

Hello! So I made a form element with the action attribute being a video file in the local directory. Everything is fine when I host the website loally (i.e. Open with Live Server). However, when I created the website with netlify according to part 3 of the course, the videos are not included. I know this because I downloaded a copy of the deploy from Netlify and in the folder I do not see the video files. I checked the Netlify forum but couldn’t find anything particularly useful. I’m wondering if there is a way to notify Netlify of my videos files so it does not complain “Page Not Found. Looks like you’ve followed a broken link or entered a URL that doesn’t exist on this site.” Any help is greatly appreciated!
Below are my code snippets for the videos just in case you would like to take a look. If you spot a mistake please definitely let me know.

        <form
          class="card_video-form"
          action="/Videos/Fortress-in-the-Sky-Trailer.mp4"
        >
          <button class="btn btn--primary card_button">
            <span class="card_icon">
              <i class="fas fa-play-circle"></i>
            </span>
          </button>
        </form>

Thank you so much!