Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joshmenden/9a22e232f5b1984ecc8c86d79b6c79e8 to your computer and use it in GitHub Desktop.
Save joshmenden/9a22e232f5b1984ecc8c86d79b6c79e8 to your computer and use it in GitHub Desktop.
name: deploy-production
on:
push:
branches:
- main
jobs:
deploy:
name: deploy my stuff
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
# ... whatever else you need
- name: Strip metadata from images
uses: joshmenden/strip-image-metadata-action@v1
with:
path-regex: ./assets/images/*
# ... deploy your code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment